vue2.0--組件通訊(非vuex法)

寫在前面:vue

1.父組件的data寫法與子組件的data寫法不一樣git

//父組件
data:{
    //對象形式
}

//子組件
data:function(){
  return {
       //函數形式  
   }
}

2.引用子組件遵循 github

  • 引入組件
  • components裏定義使用
  • 若是有通訊,須要在子組件的props註冊

如下實例所有使用如下模板vuex

<div id="app">
   //父組件
    <p>{{total}}</p>
    <mime @increment1="incrementTotal" ref="child" :num-a="total" num-s="total"></mime>
    
    <button type="button" @click="clickref">調用子組件</button>
</div>

//子組件
<template id="myInput">
    <button @click="add">{{counter}}</button>
</template>
<script>
    new Vue({
        el:'#app',
        data :{
            total: 0          
        },
        methods:{
            incrementTotal : function(){
              
            },
            clickref:function(){
              
            }
        },
        components:{
            'mime' :{
                template:'#myInput',
                data : function(){
                    return{
                        counter : 0
                    }
                },
                props:['numA','numS'],
                methods:{
                    add : function(){
                      
                    }
                }
            }
        }
    });
</script>

 

1.父子通訊 之 靜態數據app

若是隻是傳單一的字符串 函數

<mime num-s="total"></mime>

....

props:['numS'] // numS  爲字符串 total

這樣子組件的numS一直爲total。但這種太不靈活this

 

2.父子通訊 之 動態數據spa

父組件的數據將會動態傳遞給子組件code

<input v-model="total">
<mime :num-a="total"></mime>

....

//props:['numA']

props:{
   numA:[ String , Number ]  //容許字符串 數字
}

這時當input輸入什麼,子組件的numA將會獲得什麼component

 

3.父子通訊 之 子調用父

{{total}}
<mime @increment="incrementTotal"></mime>

<template id="myInput">
    <button @click="add">{{counter}}</button>
</template>

...
<script>
.... data:{ tatal:
0 }, methods:{ incrementTotal:function(){ this.total +=1; } }, components:{ data : function(){ return:{ counter : 0 } }, methods : { add : function(){ this.counter +=1; this.$emit('increment'); //子組件經過 $emit觸發父組件的方法 increment 還能夠傳參 this.$emit('increment' ,this.counter); } } }
</script>

子組件執行add --> 觸發$emit --> 觸發父組件increment --> 執行 incrementTotal 方法

 

4.父子通訊 之 父調用子

<mime ref="child"></mime>
<button type="button" @click="clickref">調用子組件</button>

<template id="myInput">
    <button @click="add">{{counter}}</button>
</template>

...
<script>
....

methods:{
   clickref:function(){
          var child = this.$refs.child; //獲取子組件實例
          child.counter = 45;           //改變子組件數據
          child.add(11);                //調用子組件方法 add
       }
},
components:{
   data : function(){
       return:{
          counter : 0
       }
   },
    methods : {
        add : function(num){
             this.counter +=1;
             console.log('接受父組件的值:',num) //num爲11
        }
   }
}
</script>

經過在子組件上引用ref,從而得到子組件實例,進行相應操做。

 

5.子組件與子組件通訊

官網:在簡單的場景下,使用一個空的 Vue 實例做爲中央事件總線

var bus = new Vue()
// 觸發組件 A 中的事件
bus.$emit('id-selected', 1)
// 在組件 B 建立的鉤子中監聽事件
bus.$on('id-selected', function (id) {
// ...
})

可是這樣實在太麻煩了,建議使用vuex

相關文章
相關標籤/搜索