雙向數據綁定已是面試中常常被問到的點,須要對原理和實現都要有必定了解。node
下面是實現雙向綁定的兩種方法:git
1、屬性劫持github
主要是經過Object對象的defineProperty方法,重寫data的set和get函數來實現的。
面試
在屬性劫持中,主要經過 _observe(重定義get、set方法,實現數據變化更新視圖)、_compile(實現視圖初始化、並對元素綁定事件)、_updata(實現具體更新視圖方法) 三個方法完成雙向綁定。
數組
__observe方法中,_binding儲存數據相關更新的watcher對象列表,set函數觸發回更新全部相關的綁定視圖對象:函數
1 MyVue.prototype._observe = function (data) { 2 const _this = this 3 Object.keys(data).forEach(key => { 4 if (data.hasOwnProperty(key)) { 5 let value = data[key] 6 this._binding[key] = { 7 _directives: [] 8 } 9 this._observe(value) 10 11 Object.defineProperty(data, key, { 12 enumerable: true, 13 configurable: true, 14 get() { 15 return value 16 }, 17 set(newValue) { 18 if (value !== newValue) { 19 value = newValue 20 _this._binding[key]._directives.forEach(item => { 21 item._updata() 22 }) 23 } 24 } 25 }) 26 } 27 }) 28 }
_compile方法中,會對DOM中的綁定命令進行解析,並綁定相關的處理函數:this
1 MyVue.prototype._compile = function (root) { 2 const _this = this 3 const nodes = root.children; 4 Object.values(nodes).forEach(nodeChild => { 5 if (nodeChild.children.length) { 6 this._compile(nodeChild) 7 } 8 9 if (nodeChild.hasAttribute('v-click')) { 10 nodeChild.addEventListener('click', (function (params) { 11 const attrVal = nodeChild.getAttribute('v-click'); 12 return _this.$methods[attrVal].bind(_this.$data) 13 })()) 14 } 15 16 if (nodeChild.hasAttribute('v-model') && (nodeChild.tagName = 'INPUT' || nodeChild.tagName == 'TEXTAREA')) { 17 nodeChild.addEventListener('input', (function (params) { 18 var attrVal = nodeChild.getAttribute('v-model'); 19 _this._binding[attrVal]._directives.push( 20 new Watcher({ 21 el: nodeChild, 22 vm: _this, 23 exp: attrVal, 24 attr: 'value' 25 }) 26 ) 27 28 return function () { 29 _this.$data[attrVal] = nodeChild.value; 30 } 31 })()) 32 } 33 34 if (nodeChild.hasAttribute('v-bind')) { 35 const attrVal = nodeChild.getAttribute('v-bind'); 36 _this._binding[attrVal]._directives.push( 37 new Watcher({ 38 el: nodeChild, 39 vm: _this, 40 exp: attrVal, 41 attr: 'innerHTML' 42 }) 43 ) 44 } 45 }) 46 }
_updata函數,主要在_compile函數中調用進行視圖初始化和set函數調用更新綁定數據的相關視圖:spa
1 function Watcher({ el, vm, exp, attr }) { 2 this.el = el 3 this.vm = vm 4 this.exp = exp 5 this.attr = attr 6 7 this._updata() 8 } 9 10 Watcher.prototype._updata = function () { 11 this.el[this.attr] = this.vm.$data[this.exp] 12 }
網上的一張屬性劫持的運行圖:prototype
完整的代碼請參考 Two Way Binding
雙向綁定
2、髒數據檢查
主要經過執行一個檢測來遍歷全部的數據,對比你更改了地方,而後執行變化。
在髒檢查中,做用域scope對象中會維護一個「watcher」數組,用來存放因此須要檢測的表達式,以及對應的回調處理函數。
對於全部須要檢測的對象、屬性,scope經過「watch」方法添加到「watcher」數組中:
1 Scope.prototype.watch = function(watchExp, callback) { 2 this.watchers.push({ 3 watchExp: watchExp, 4 callback: callback || function() {} 5 }); 6 }
當Model對象發生變化的時候,調用「digest」方法進行髒檢測,若是發現髒數據,就調用對應的回調函數進行界面的更新:
1 Scope.prototype.digest = function() { 2 var dirty; 3 4 do { 5 dirty = false; 6 7 for(var i = 0; i < this.watchers.length; i++) { 8 var newVal = this.watchers[i].watchExp(), 9 oldVal = this.watchers[i].last; 10 11 if(newVal !== oldVal) { 12 this.watchers[i].callback(newVal, oldVal); 13 dirty = true; 14 this.watchers[i].last = newVal; 15 } 16 } 17 } while(dirty); 18 19 }
完整的代碼請參考 Two Way Binding