- props和$emit
- 中央事件總線
- $attrs和$listeners
- provide和inject
- v-model
- $parent和$children
- boradcast和dispatch
- vuex
props和$emit
父組件向子組件傳遞數(shù)據(jù)是通過prop傳遞的稍刀,子組件傳遞數(shù)據(jù)給父組件是通過$emit觸發(fā)事件來做到的尊勿。
- 父組件傳遞了message數(shù)據(jù)給子組件碰辅,并且通過v-on綁定了一個getChildData事件來監(jiān)聽子組件的觸發(fā)事件;
- 子組件通過props得到相關(guān)的message數(shù)據(jù),最后通過this.$emit觸發(fā)了getChildData事件。
Vue.component('child',{
data(){
return {
mymessage:this.message
}
},
template:`
<div>
<input type="text" v-model="mymessage" @input="passData(mymessage)"> </div>
`,
props:['message'],//得到父組件傳遞過來的數(shù)據(jù)
methods:{
passData(val){
//觸發(fā)父組件中的事件
this.$emit('getChildData',val)
}
}
})
Vue.component('parent',{
template:`
<div>
<p>this is parent compoent!</p>
<child :message="message" v-on:getChildData="getChildData"></child>
</div>
`,
data(){
return {
message:'hello'
}
},
methods:{
//執(zhí)行子組件觸發(fā)的事件
getChildData(val){
console.log(val)
}
}
})
var app=new Vue({
el:'#app',
template:`
<div>
<parent></parent>
</div>
`
})
中央事件總線
上面兩種方式處理的都是父子組件之間的數(shù)據(jù)傳遞,而如果兩個組件不是父子關(guān)系呢典挑?這種情況下可以使用中央事件總線的方式。新建一個Vue事件bus對象啦吧,然后通過bus.on監(jiān)聽觸發(fā)的事件。
Vue.component('brother1',{
data(){
return {
mymessage:'hello brother1'
}
},
template:`
<div>
<p>this is brother1 compoent!</p>
<input type="text" v-model="mymessage" @input="passData(mymessage)">
</div>
`,
methods:{
passData(val){
//觸發(fā)全局事件globalEvent
bus.$emit('globalEvent',val)
}
}
})
Vue.component('brother2',{
template:`
<div>
<p>this is brother2 compoent!</p>
<p>brother1傳遞過來的數(shù)據(jù):{{brothermessage}}</p>
</div>
`,
data(){
return {
mymessage:'hello brother2',
brothermessage:''
}
},
mounted(){
//綁定全局事件globalEvent
bus.$on('globalEvent',(val)=>{
this.brothermessage=val;
})
}
})
//中央事件總線
var bus=new Vue();
var app=new Vue({
el:'#app',
template:`
<div>
<brother1></brother1>
<brother2></brother2>
</div>
`
})
$attrs和$listeners
第一種方式處理父子組件之間的數(shù)據(jù)傳輸有一個問題:如果父組件A下面有子組件B授滓,組件B下面有組件C,這時如果組件A想傳遞數(shù)據(jù)給組件C怎么辦呢琳水?
如果采用第一種方法,我們必須讓組件A通過prop傳遞消息給組件B般堆,組件B在通過prop傳遞消息給組件C在孝;要是組件A和組件C之間有更多的組件,那采用這種方式就很復(fù)雜了淮摔。Vue 2.4開始提供了listeners來解決這個問題浑玛,能夠讓組件A之間傳遞消息給組件C。
Vue.component('C',{
template:`
<div>
<input type="text" v-model="$attrs.messagec" @input="passCData($attrs.messagec)"> </div>
`,
methods:{
passCData(val){
//觸發(fā)父組件A中的事件
this.$emit('getCData',val)
}
}
})
Vue.component('B',{
data(){
return {
mymessage:this.message
}
},
template:`
<div>
<input type="text" v-model="mymessage" @input="passData(mymessage)">
<!-- C組件中能直接觸發(fā)getCData的原因在于 B組件調(diào)用C組件時 使用 v-on 綁定了$listeners 屬性 -->
<!-- 通過v-bind 綁定$attrs屬性噩咪,C組件可以直接獲取到A組件中傳遞下來的props(除了B組件中props聲明的) -->
<C v-bind="$attrs" v-on="$listeners"></C>
</div>
`,
props:['message'],//得到父組件傳遞過來的數(shù)據(jù)
methods:{
passData(val){
//觸發(fā)父組件中的事件
this.$emit('getChildData',val)
}
}
})
Vue.component('A',{
template:`
<div>
<p>this is parent compoent!</p>
<B :messagec="messagec" :message="message" v-on:getCData="getCData" v-on:getChildData="getChildData(message)"></B>
</div>
`,
data(){
return {
message:'hello',
messagec:'hello c' //傳遞給c組件的數(shù)據(jù)
}
},
methods:{
getChildData(val){
console.log('這是來自B組件的數(shù)據(jù)')
},
//執(zhí)行C子組件觸發(fā)的事件
getCData(val){
console.log("這是來自C組件的數(shù)據(jù):"+val)
}
}
})
var app=new Vue({
el:'#app',
template:`
<div>
<A></A>
</div>
`
})
provide和inject
父組件中通過provider來提供變量顾彰,然后在子組件中通過inject來注入變量。不論子組件有多深胃碾,只要調(diào)用了inject那么就可以注入provider中的數(shù)據(jù)涨享。而不是局限于只能從當(dāng)前父組件的prop屬性來獲取數(shù)據(jù),只要在父組件的生命周期內(nèi)仆百,子組件都可以調(diào)用厕隧。
Vue.component('child',{
inject:['for'],//得到父組件傳遞過來的數(shù)據(jù)
data(){
return {
mymessage:this.for
}
},
template:`
<div>
<input type="tet" v-model="mymessage">
</div>
})
Vue.component('parent',{
template:`
<div>
<p>this is parent compoent!</p>
<child></child>
</div>
`,
provide:{
for:'test'
},
data(){
return {
message:'hello'
}
}
})
var app=new Vue({
el:'#app',
template:`
<div>
<parent></parent>
</div>
`
})
v-model
父組件通過v-model傳遞值給子組件時,會自動傳遞一個value的prop屬性,在子組件中通過this.$emit(‘input’,val)自動修改v-model綁定的值
Vue.component('child',{
props:{
value:String, //v-model會自動傳遞一個字段為value的prop屬性
},
data(){
return {
mymessage:this.value
}
},
methods:{
changeValue(){
this.$emit('input',this.mymessage);//通過如此調(diào)用可以改變父組件上v-model綁定的值
}
},
template:`
<div>
<input type="text" v-model="mymessage" @change="changeValue">
</div>
})
Vue.component('parent',{
template:`
<div>
<p>this is parent compoent!</p>
<p>{{message}}</p>
<child v-model="message"></child>
</div>
`,
data(){
return {
message:'hello'
}
}
})
var app=new Vue({
el:'#app',
template:`
<div>
<parent></parent>
</div>
`
})
$parent和$children
Vue.component('child',{
props:{
value:String, //v-model會自動傳遞一個字段為value的prop屬性
},
data(){
return {
mymessage:this.value
}
},
methods:{
changeValue(){
this.$parent.message = this.mymessage;//通過如此調(diào)用可以改變父組件的值
}
},
template:`
<div>
<input type="text" v-model="mymessage" @change="changeValue">
</div>
})
Vue.component('parent',{
template:`
<div>
<p>this is parent compoent!</p>
<button @click="changeChildValue">test</button >
<child></child>
</div>
`,
methods:{
changeChildValue(){
this.$children[0].mymessage = 'hello';
}
},
data(){
return {
message:'hello'
}
}
})
var app=new Vue({
el:'#app',
template:`
<div>
<parent></parent>
</div>
`
})
boradcast和dispatch
vue1.0中提供了這種方式吁讨,但vue2.0中沒有髓迎,但很多開源軟件都自己封裝了這種方式,比如min ui建丧、element ui和iview等排龄。
比如如下代碼,一般都作為一個mixins去使用, broadcast是向特定的父組件翎朱,觸發(fā)事件橄维,dispatch是向特定的子組件觸發(fā)事件,本質(zhì)上這種方式還是on和on和emit的封裝拴曲,但在一些基礎(chǔ)組件中卻很實用争舞。
function broadcast(componentName, eventName, params) {
this.$children.forEach(child => {
var name = child.$options.componentName;
if (name === componentName) {
child.$emit.apply(child, [eventName].concat(params));
} else {
broadcast.apply(child, [componentName, eventName].concat(params));
}
});
}
export default {
methods: {
dispatch(componentName, eventName, params) {
var parent = this.$parent;
var name = parent.$options.componentName;
while (parent && (!name || name !== componentName)) {
parent = parent.$parent;
if (parent) {
name = parent.$options.componentName;
}
}
if (parent) {
parent.$emit.apply(parent, [eventName].concat(params));
}
},
broadcast(componentName, eventName, params) {
broadcast.call(this, componentName, eventName, params);
}
}
};
vuex
如果業(yè)務(wù)邏輯復(fù)雜,很多組件之間需要同時處理一些公共的數(shù)據(jù)澈灼,這個時候才有上面這一些方法可能不利于項目的維護竞川,vuex的做法就是將這一些公共的數(shù)據(jù)抽離出來,然后其他組件就可以對這個公共數(shù)據(jù)進行讀寫操作叁熔,這樣達到了解耦的目的流译。
詳情可參考:https://vuex.vuejs.org/zh-cn/