1、vue中的響應式屬性html
Vue中的數據實現響應式綁定vue
一、對象實現響應式:node
是在初始化的時候利用definePrototype的定義set和get過濾器,在進行組件模板編譯時實現water的監聽蒐集依賴項,當數據發生變化時在set中經過調用dep.notify進行發佈通知,實現視圖的更新。數組
二、數組實現響應式:瀏覽器
對於數組則是經過繼承重寫數組的方法splice、pop、push、shift、unshift、sort、reverse、等能夠修改原數組的方式實現響應式的,可是經過length以及直接利用item[index]方式修改數組是不能實現響應式的改變dom(這種兩種方式涉及到數組的內部實現)。在數據更新後爲了不過於頻繁的進行dom的操做,在vue中會將更新的dom進行批量操做,而不是直接有數據更新就刷新dom,vue將須要更新的dom壓入異步隊列記性批量操做,提升性能。緩存
下面具體的實現,實現原理大體以下:app
對象中實現雙向數據綁定,能夠直接在瀏覽器查看效果:dom
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Two-way data-binding</title> </head> <body> <div id="app"> <input type="text" v-model="text"> {{ text }} </div> <script> function observe (obj, vm) { Object.keys(obj).forEach(function (key) { defineReactive(vm, key, obj[key]); }); } function defineReactive (obj, key, val) { var dep = new Dep(); Object.defineProperty(obj, key, { get: function () { // 添加訂閱者watcher到主題對象Dep if (Dep.target) dep.addSub(Dep.target); return val }, set: function (newVal) { if (newVal === val) return val = newVal; // 做爲發佈者發出通知 dep.notify(); } }); } function nodeToFragment (node, vm) { var flag = document.createDocumentFragment(); var child; while (child = node.firstChild) { compile(child, vm); flag.appendChild(child); // 將子節點劫持到文檔片斷中 } return flag; } function compile (node, vm) { var reg = /\{\{(.*)\}\}/; // 節點類型爲元素 if (node.nodeType === 1) { var attr = node.attributes; // 解析屬性 for (var i = 0; i < attr.length; i++) { if (attr[i].nodeName == 'v-model') { var name = attr[i].nodeValue; // 獲取v-model綁定的屬性名 node.addEventListener('input', function (e) { // 給相應的data屬性賦值,進而觸發該屬性的set方法 vm[name] = e.target.value; }); node.value = vm[name]; // 將data的值賦給該node node.removeAttribute('v-model'); } }; new Watcher(vm, node, name, 'input'); } // 節點類型爲text if (node.nodeType === 3) { if (reg.test(node.nodeValue)) { var name = RegExp.$1; // 獲取匹配到的字符串 name = name.trim(); new Watcher(vm, node, name, 'text'); } } } function Watcher (vm, node, name, nodeType) { Dep.target = this; this.name = name; this.node = node; this.vm = vm; this.nodeType = nodeType; this.update(); Dep.target = null; } Watcher.prototype = { update: function () { this.get(); if (this.nodeType == 'text') { this.node.nodeValue = this.value; } if (this.nodeType == 'input') { this.node.value = this.value; } }, // 獲取data中的屬性值 get: function () { this.value = this.vm[this.name]; // 觸發相應屬性的get } } function Dep () { this.subs = [] } Dep.prototype = { addSub: function(sub) { this.subs.push(sub); }, notify: function() { this.subs.forEach(function(sub) { sub.update(); }); } }; function Vue (options) { this.data = options.data; var data = this.data; observe(data, this); var id = options.el; var dom = nodeToFragment(document.getElementById(id), this); // 編譯完成後,將dom返回到app中 document.getElementById(id).appendChild(dom); } var vm = new Vue({ el: 'app', data: { text: 'hello world' } }); </script> </body> </html>
在vue的data中定義的屬性才具備響應式的效果,經過vue.name或者this.name形式定義的全局變量雖然能夠在template中使用,可是其不是響應式的。同時在data中定義的對象obj,若是後面給對象定義新的屬性也不是響應式的,除非經過vue提供的方法set設置,具體以下:異步
new vue({ data(){ return { obj:{} } }, methods:{ this.obj.name="hs"//非響應屬性 this.$set(this.obj,'name','hs')//name屬性將會是響應式的 } })
若是data中定義的有數組元素同時在computed中也要注意具體以下面介紹。性能
2、computed定義的計算屬性
一、在vue中$option.data中定義的數據是都是響應式的,在初始化生命週期的時候就已經實現了數據雙向綁定,一般在view中只是用一個表達式語句,當綁定時的邏輯比較複雜是能夠經過計算屬性的方式實現。可是在computed中定義的屬性只具備get方法,因此當在程序中改變屬性的時候並不能實現視圖的動態響應。能夠經過顯示的定義set的方式實現視圖的刷新。
<div v-on:click="con">{{model1}}</div>
JS代碼
const app = new Vue({ data:function () { return { model:'hello', name:'world', } }, computed:{ model1: { get: function(){ return this.model; },set:function (val) { return this.model=val; } } }, methods:{ con:function () { this.model1="hello world"//動態修改model1屬性時,視圖也會跟着跟新 console.log(this.model1); } }, /* watch:{ 'model1':function (val) { console.log(val) } }*/ }).$mount('#app')
二、若是在computed中定義的屬性依賴於data中定義的屬性,當data中的屬性動態變化時,視圖中綁定的computed的值也會跟着變化
const app = new Vue({ /* router:router,*/ data:function () { return { model:'hello', name:'world', } }, computed:{ model1: { get: function(){ return a; },set:function (val) { a=val; } } }, methods:{ con:function () { this.model1="hello world" console.log(this.model1); } }, /* watch:{ 'model1':function (val) { console.log(val) } }*/ }).$mount('#app')
經過以上兩種方式實現的computed的動態雙向綁定實質是經過中間的層data的屬性,computed中依賴的屬性若是不是data中的屬性則也不能實現動態的綁定 ,即當上面的get,set中的this.model換成一個全局的屬性時,也不能實現動態的更新。因此實質上在vue中最爲原始的響應式數據實際是在data中定義的,若是computed中定義的屬性依賴於data中的屬性時,其實質是其依賴data中的屬性在訪問時觸發data中的getter方法,從而會註冊監聽器,因此當依賴屬性變化時,computed中的屬性也會跟着變化。可是在computed中定義的不具備依賴項的屬性是直接掛在在vue實例上的屬性其是不具備響應式的特色的。
三、watch監聽data中屬性的變化,能夠實現和computed的一樣的效果,當時當監聽的屬性依賴多個屬性時,利用computed更爲方便,以下:
(1)使用watch監聽
<div id="demo">{{fullName}}</div> var vm = new Vue({ el: '#demo', data: { firstName: 'Foo', lastName: 'Bar', fullName: 'Foo Bar' } }) vm.$watch('firstName', function (val) { this.fullName = val + ' ' + this.lastName }) vm.$watch('lastName', function (val) { this.fullName = this.firstName + ' ' + val }
(2)利用computed監聽,更爲簡潔,同時computed會將結果進行緩存,當結果沒有發生變化時,不會觸發相應回調
var vm = new Vue({ data: { firstName: 'Foo', lastName: 'Bar' }, computed: { fullName: function () { return this.firstName + ' ' + this.lastName } } })