亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue組件 $children,$refs,$parent的使用詳解

發布時間:2020-08-29 13:27:24 來源:腳本之家 閱讀:181 作者:你的一燈 欄目:web開發

本文介紹了vue組件 $children,$refs,$parent的使用,分享給大家,也自己留個筆記

如果項目很大,組件很多,怎么樣才能準確的、快速的尋找到我們想要的組件了??

1)$refs

首先你的給子組件做標記。demo :<firstchild ref="one"></firstchild>

然后在父組件中,通過this.$refs.one就可以訪問了這個自組件了,包括訪問自組件的data里面的數據,調用它的函數

2)$children

他返回的是一個組件集合,如果你能清楚的知道子組件的順序,你也可以使用下標來操作;

for(let i=0;i<this.$children.length;i++){
    console.log(this.$children[i].msg);輸出子組件的msg數據;
 }

接下來就給一個長一點的deno

首先定義一個父組件:parentcomponent,

在父組件中我又是使用了兩個自組件(假如有一百個自組件)[明確一點,組件只能有一個根節點],根節點是啥,我不知道。。。。。。

<template id="parentcomponent">
  <div >
    <p>this is a parent-component</p>
    <firstchild ref="f1"></firstchild>
    <secondchild ref="f2"></secondchild>
    <button @click='show_child_of_parents'>show child msg</button>
  </div>
</template>

 分別給出兩個字組件的定義:(第2個使用的是template,第1個是script) 

<script type="text/x-template" id="childOne">
  <div>
    <p>this is first child</p>
   
    //使用stop阻止默認事件(vue的事件處理機制)
    <button @click.stop='getParent'>get parent msg</button>
  </div>
</script>

<template id="childSec">
  <div>
    <p>this is second child</p>
  </div>
</template>

組件模板定義好了,就是用:

1)掛在元素: 

<script>
  new Vue({
    el:"#app",
    data:{},
    components:{
      "parent-component":{
        template:'#parentcomponent', 
        data(){
          return{msg:'這是父組件中的內容'}          
        },
        methods:{
          show_child_of_parents(){
            //children方式訪問自組件
               for(let i=0;i<this.$children.length;i++){
                console.log(this.$children[i].msg);
            }
               //通過$ref打標記,訪問子組件 
            console.log(this.$refs.f1.msg);
               this.$refs.f1.getParent();
          },                  
        },  
             
        components:{
          'firstchild':{
            template:'#childOne',
            data(){
              return {msg:'這是第一個子組件'};
            },
            methods:{
              getParent(){
                let a=1;
                console.log(a);
                alert(this.$parent.msg);
                
              }
            },
          },
          
          'secondchild':{
            template:'#childSec',
            data(){
              return {msg:"這是第二個組件"};
            }
          }
          
        }
                
      }
    }
    
  });

</script>

 2)使用父組件了

  <body>
    <p><strong>可以通過$refs訪問父組件的子組件</strong></p>
    <div id="app">
      <parent-component></parent-component>
    </div>
  </body>

值得注意的是vue2,相比vue1,丟棄了一些東西。。。。、https://www.jb51.net/article/93467.htm

總結一下:

1)組件只能一個根節點

2)可以在自組件中使用this.$parent.屬性值,或者函數

3)在父組件中可以使用this.$refs.組件的標記 訪問子組件,或者this.$children[i].屬性,,訪問子組件的

 4)你需要注意this的指向

vue組件 $children,$refs,$parent的使用詳解

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。 

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

朝阳市| 曲麻莱县| 双柏县| 宣武区| 晋城| 南宁市| 烟台市| 唐山市| 房山区| 英山县| 饶阳县| 辰溪县| 灵武市| 余江县| 陆川县| 酒泉市| 鲜城| 锡林浩特市| 湖北省| 普格县| 通辽市| 太仆寺旗| 大丰市| 洛阳市| 资兴市| 镇平县| 郯城县| 罗源县| 花莲县| 昭平县| 饶阳县| 南川市| 汾阳市| 炉霍县| 政和县| 玉门市| 莱西市| 兴义市| 扎鲁特旗| 崇左市| 独山县|