Vue 2.x相比較Vue 1.x而言,升級變化除了實現了Virtual-Dom之外,給使用者最大不適就是移除的組件的props
的雙向綁定功能。
以往在Vue1.x中利用props
的twoWay
和.sync
綁定修飾符就能夠實現props的雙向綁定功能,可是在Vue2中完全廢棄了此功能,若是須要雙向綁定須要本身來實現。javascript
在Vue2中組件的props的數據流動改成了只能單向流動,即只能由組件外(調用組件方)經過組件的DOM屬性attribute
傳遞props
給組件內,組件內只能被動接收組件外傳遞過來的數據,而且在組件內,不能修改由外層傳來的props數據。html
vue
關於這一點的修改官方給的解釋:java
prop 是單向綁定的:當父組件的屬性變化時,將傳導給子組件,可是不會反過來。這是爲了防止子組件無心修改了父組件的狀態——這會讓應用的數據流難以理解。vuex
雖然廢棄了props的雙向綁定對於整個項目總體而言是有利且正確的,可是在某些時候咱們確實須要從組件內部修改props的需求typescript
假設我要作一個iOS風格的開關按鈕,需求就只有兩個:app
ui
代碼大體是相似這樣的:this
<div id="app"> <!--開關組件--> <switchbtn :result="result"></switchbtn> <!--外部控制--> <input type="button" value="change" @click="change"> </div>
//開關組件代碼 Vue.component("switchbtn",{ template:"<div @click='change'>{{result?'開':'關'}}</div>", props:["result"], methods:{ change(){ this.result=!this.result; } } }); //調用組件 new Vue({ el: "#app", data:{ result:true//開關狀態數據 }, methods:{ change(){ this.result=!this.result; } } });
可是在vue2.0中上面的代碼在點擊開關時會報錯:spa
[Vue warn]: Avoid mutating a prop directly since the value will be overwritten whenever the parent component re-renders. Instead, use a data or computed property based on the prop's value. Prop being mutated: "result" (found in component )
組件內不能修改props的值,同時修改的值也不會同步到組件外層,即調用組件方不知道組件內部當前的狀態是什麼
由於result
不可寫,因此須要在data中建立一個副本myResult
變量,初始值爲props屬性result
的值,同時在組件內全部須要調用props的地方調用這個data對象myResult
。
Vue.component("switchbtn", { template: "<div @click='change'>{{myResult?'開':'關'}}</div>", props: ["result"], data: function () { return { myResult: this.result//data中新增字段 }; }, ...... });
此時在組件外(父組件)修改了組件的props,會同步到組件內對應的props上,可是不會同步到你剛剛在data對象中建立的那個副本上,因此須要再建立一個針對props屬性result
的watch(監聽),當props修改後對應data中的副本myResult
也要同步數據。
Vue.component("switchbtn", { template: "<div @click='change'>{{myResult?'開':'關'}}</div>", props: ["result"], data: function () { return { myResult: this.result }; }, watch: { result(val) { this.myResult = val;//新增result的watch,監聽變動並同步到myResult上 } }, ......
此時在組件內修改了props的副本myResult
,組件外不知道組件內的props狀態,因此須要再建立一個針對props副本myResult
,即對應data屬性的watch。
在組件內向外層(父組件)發送通知,通知組件內屬性變動,而後由外層(父組件)本身來變動他的數據
最終所有代碼:
<div id="app"> <switchbtn :result="result" @on-result-change="onResultChange"></switchbtn> <input type="button" value="change" @click="change"> </div>
Vue.component("switchbtn", { template: "<div @click='change'>{{myResult?'開':'關'}}</div>", props: ["result"], data: function () { return { myResult: this.result//①建立props屬性result的副本--myResult }; }, watch: { result(val) { this.myResult = val;//②監聽外部對props屬性result的變動,並同步到組件內的data屬性myResult中 }, myResult(val){ //xxcanghai 小小滄海 博客園 this.$emit("on-result-change",val);//③組件內對myResult變動後向外部發送事件通知 } }, methods: { change() { this.myResult = !this.myResult; } } }); new Vue({ el: "#app", data: { result: true }, methods: { change() { this.result = !this.result; }, onResultChange(val){ this.result=val;//④外層調用組件方註冊變動方法,將組件內的數據變動,同步到組件外的數據狀態中 } } });
至此,實現了組件內數據與組件外的數據的雙向綁定,組件內外數據的同步。最後歸結爲一句話就是:組件內部本身變了告訴外部,外部決定要不要變。

首先要聲明的是雙向綁定的props確定是不利於組件間的數據狀態管理,尤爲是在複雜的業務中更是如此,因此要儘量的少用雙向綁定,過於複雜的數據處理建議使用Vuex (http://vuex.vuejs.org/zh-cn/intro.html)
可是在咱們平時使用過程當中又確實有props雙向綁定的需求,我的認爲只有在知足如下條件時再使用雙向綁定的props。
知足上述條件的有好比本例中的switch開關組件,須要外部控制開關狀態;再好比Tab多標籤頁組件的activeIndex屬性,須要能夠由外部控制標籤頁當前打開哪一頁等等
經過上例也能夠看出在Vue2.0中實現props的雙向綁定很麻煩,若是有兩個props須要作雙向綁定上面的代碼就要實現兩遍,代碼極其冗餘。
因此我寫了一個mixin來自動化處理props的雙向綁定的需求——propsync
。
mixins: [propsync]
active
,則自動生成名爲p_active
的data字段(props到data的名稱變動方法可自行修改,詳見propsync源碼開頭配置)propsync:false
來聲明此props不須要建立雙向綁定。例:
import propsync from './mixins/propsync';//引入mixin文件 export default { name: "tab", mixins: [propsync],//聲明使用propsync的mixin props: { active: { type: [String, Number],//會被propsync自動實現雙向綁定,在data中建立p_active變量 }, width: { type: [Number, String], propsync:false//不會被propsync實現雙向綁定 } }, methods: { setActive(page, index, e) { this.p_active = index;//能夠直接使用this.p_active } } }
onPropsChange
(可修改),當組件內修改了props時propsync
會觸發此事件,返回參與依次爲:修改prop名稱,修改後值,修改前值。能夠由當前組件調用方(父組件)來決定是否要將組件內的變動同步到調用方例:
<tab :active="active" @onPropsChange="change"></tab> ......略 { data:{ active:0 }, methods:{ change:function(propName,newVal,oldVal){ this[propName]=newVal; console.log("組件tab的" +propName+ "屬性變動爲" +newVal); } } }