小編給大家分享一下Vuejs響應(yīng)式原理的示例分析,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
成都創(chuàng)新互聯(lián)專注于察哈爾右翼后企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站開發(fā),成都做商城網(wǎng)站。察哈爾右翼后網(wǎng)站建設(shè)公司,為察哈爾右翼后等地區(qū)提供建站服務(wù)。全流程按需網(wǎng)站制作,專業(yè)設(shè)計(jì),全程項(xiàng)目跟蹤,成都創(chuàng)新互聯(lián)專業(yè)和態(tài)度為您提供的服務(wù)
響應(yīng)式原理
> vuejs中的模型(model)和視圖(view)是保持同步的,在修改數(shù)據(jù)的時(shí)候會自動更新視圖,這其實(shí)依賴于Object.defineProperty方法,所以vuejs不支持IE8及以下版本,vuejs通過劫持getter/setter方法來監(jiān)聽數(shù)據(jù)的變化,通過getter進(jìn)行依賴收集,在數(shù)據(jù)變更執(zhí)行setter的時(shí)候通知視圖更新。
Object.defineProperty
> Object.defineProperty可以定義對象的屬性或修改對象的屬性
> 目前可以通過 Object.defineProperty描述的屬性分為兩種:數(shù)據(jù)屬性和訪問器屬性
// obj: 對象 // prop: 對象中的屬性 // descriptor: 對象中的屬性的特性 Object.defineProperty(obj,prop,descriptor);
數(shù)據(jù)屬性 > 數(shù)據(jù)屬性的descriptor包含四種:value、writable、enumerable、configurable
var person = { name: 'json', age: 18 } Object.defineProperty(person, 'name', { value: 'John', // 屬性的值,默認(rèn)為undefined writable: false, // 是否可以重寫屬性的值,設(shè)為false便是只讀的 enumerable: false, // 是否可枚舉(for in或Object.keys),默認(rèn)為false configurable: true // 是否可以刪除或者重新設(shè)定上述配置,默認(rèn)為false }) person.name = 'new name'; console.log(person.name); // 'John' for(key in person) console.log(person[key]); // 18 Object.defineProperty(person, 'name', { writable: true, enumerable: true, configurable: false }) person.name = 'new name'; console.log(person.name); // 'new name' for(key in person) console.log(person[key]); // 'new name',18
訪問器屬性 > 訪問器屬性的desciptor包含四種:get、set、enumerable、configurable
var person = { _age: 20 }; Object.defineProperty(person, 'age',{ get: function(){ return this._age; }, set: function(age){ this._age = age < 0 ? 0 : age; } }); person.age = 5; // _age == 5 person.age = -3; // _age == 0 person._age = -3; // _age == -3
Vuejs劫持?jǐn)?shù)據(jù)的做法
function observer(value, cb) { // 遍歷對象的所有屬性并為對象添加對應(yīng)的訪問器屬性 Object.keys(value).forEach((key) => defineReactive(value, key, value[key] , cb)) } function defineReactive (obj, key, val, cb) { Object.defineProperty(obj, key, { enumerable: true, configurable: true, get: ()=>{ /*....依賴收集等....*/ }, set:newVal=> { cb();/*訂閱者收到消息的回調(diào),這里為render函數(shù),即重新渲染*/ } }) } class Vue { constructor(options) { this._data = options.data; observer(this._data, options.render) /*把所有數(shù)據(jù)變成可觀察的*/ } } let app = new Vue({ el: '#app', data: { text: 'text', text2: 'text2' }, render(){ console.log("render"); } })
殘留問題 > 上述實(shí)現(xiàn)只有通過app._data_text才會觸發(fā)set,那么怎樣才能做到app.text就能觸發(fā)set呢
代理
> 通過在this對象中添加訪問器屬性即可實(shí)現(xiàn)代理,然后就可以用app.text來代替app._data.text了
_proxy(options.data);/*構(gòu)造函數(shù)中*/ /*代理*/ function _proxy (data) { const that = this; Object.keys(data).forEach(key => { Object.defineProperty(that, key, { configurable: true, enumerable: true, get: function proxyGetter () { return that._data[key]; }, set: function proxySetter (val) { that._data[key] = val; } }) }); }
以上是“Vuejs響應(yīng)式原理的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
當(dāng)前標(biāo)題:Vuejs響應(yīng)式原理的示例分析
文章位置:http://jinyejixie.com/article36/psiipg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供外貿(mào)建站、網(wǎng)站策劃、網(wǎng)站導(dǎo)航、服務(wù)器托管、品牌網(wǎng)站制作、微信小程序
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)