91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Vue組件實例間直接訪問的示例分析

發布時間:2021-08-02 14:00:05 來源:億速云 閱讀:122 作者:小新 欄目:web開發

小編給大家分享一下Vue組件實例間直接訪問的示例分析,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

前面的話

  有時候需要父組件訪問子組件,子組件訪問父組件,或者是子組件訪問根組件。 在組件實例中,Vue提供了相應的屬性,包括$parent、$children、$refs和$root,這些屬性都掛載在組件的this上。

$parent 

  $parent表示父組件的實例,該屬性只讀

  下面是一個簡易實例

<div id="example">
 <parent-component></parent-component>
</div>
<template id="parent-component">
 <div class="parent">
 <h4>我是父組件</h4>
 <input v-model="parentMsg">
 <p>{{parentMsg}}</p>
 <child-component></child-component> 
 </div>
</template>
<template id="child-component">
 <div class="child">
 <h4>我是子組件</h4>
 <p>{{msg}}</p>
 <button v-on:click="showData">顯示父組件數據</button> 
 </div>
</template>
<script>
// 注冊
Vue.component('parent-component', {
 template: '#parent-component',
 data(){
 return{
  parentMsg:'我是父組件的數據'
 }
 },
 components:{
 'child-component':{
  template:'#child-component',
  data(){
  return{
   msg:''
  }
  },
  methods:{
  showData(){
   this.msg = this.$parent.parentMsg;
  }
  }
 }
 }
})
// 創建根實例
new Vue({
 el: '#example'
})
</script>

$root 

  $root表示當前組件樹的根 Vue 實例。如果當前實例沒有父實例,此實例將會是其自己。該屬性只讀

<div id="example">
 <h4>我是根組件</h4>
 <input v-model="rootMsg">
 <p>{{rootMsg}}</p> 
 <parent-component></parent-component>
</div>
<template id="parent-component">
 <div class="parent">
 <h4>我是父組件</h4>
 <input v-model="parentMsg">
 <p>{{parentMsg}}</p>
 <child-component></child-component> 
 </div>
</template>
<template id="child-component">
 <div class="child">
 <h4>我是子組件</h4>
 <p>
  <button v-on:click="showRootData">顯示根組件數據</button><span>{{rootMsg}}</span>
 </p>  
 <p>
  <button v-on:click="showParentData">顯示父組件數據</button><span>{{parentMsg}}</span>
 </p>
 </div>
</template>
<script>
// 注冊
Vue.component('parent-component', {
 template: '#parent-component',
 data(){
 return{
  parentMsg:'我是父組件的數據'
 }
 },
 components:{
 'child-component':{
  template:'#child-component',
  data(){
  return{
   parentMsg:'',
   rootMsg:''
  }
  },
  methods:{
  showParentData(){
   this.parentMsg = this.$parent.parentMsg;
  },
  showRootData(){
   this.rootMsg = this.$root.rootMsg;
  },  
  }
 }
 }
})
// 創建根實例
new Vue({
 el: '#example',
 data:{
 rootMsg:'我是根組件數據'
 }
})
</script>

$children 

  $children表示當前實例的直接子組件。需要注意$children并不保證順序,也不是響應式的。如果正在嘗試使用$children來進行數據綁定,考慮使用一個數組配合v-for來生成子組件,并且使用Array作為真正的來源

<div id="example">
 <parent-component></parent-component>
</div>
<template id="parent-component">
 <div class="parent">
 <h4>我是父組件</h4>
 <button @click="getData">獲取子組件數據</button>
 <br>
 <div v-html="msg"></div>
 <child-component1></child-component1> 
 <child-component2></child-component2> 
 </div>
</template>
<template id="child-component1">
 <div class="child">
 <h4>我是子組件1</h4>
 <input v-model="msg">
 <p>{{msg}}</p>
 </div>
</template>
<template id="child-component2">
 <div class="child">
 <h4>我是子組件2</h4>
 <input v-model="msg">
 <p>{{msg}}</p>
 </div>
</template>
<script>
// 注冊
Vue.component('parent-component', {
 template: '#parent-component',
 data(){
 return{
  msg:'',
 }
 },
 methods:{
 getData(){
  let html = '';
  let children = this.$children;
  for(var i = 0; i < children.length;i++){
  html+= '<div>' + children[i].msg + '</div>';
  }
  this.msg = html;
 }
 },
 components:{
 'child-component1':{
  template:'#child-component1',
  data(){
  return{
   msg:'',
  }
  },
 },
 'child-component2':{
  template:'#child-component2',
  data(){
  return{
   msg:'',
  }
  },
 }, 
 } 
})
// 創建根實例
new Vue({
 el: '#example',
})
</script>

$refs

  組件個數較多時,難以記住各個組件的順序和位置,通過序號訪問子組件不是很方便

  在子組件上使用ref屬性,可以給子組件指定一個索引ID:

<child-component1 ref="c1"></child-component1>
<child-component2 ref="c2"></child-component2>

  在父組件中,則通過$refs.索引ID訪問子組件的實例

this.$refs.c1

this.$refs.c2

<div id="example">
 <parent-component></parent-component>
</div>
<template id="parent-component">
 <div class="parent">
 <h4>我是父組件</h4>
 <div>
  <button @click="getData1">獲取子組件c1的數據</button>
  <p>{{msg1}}</p>
 </div>
 <div>
  <button @click="getData2">獲取子組件c2的數據</button>
  <p>{{msg2}}</p>
 </div>
 <child-component1 ref="c1"></child-component1> 
 <child-component2 ref="c2"></child-component2> 
 </div>
</template>
<template id="child-component1">
 <div class="child">
 <h4>我是子組件1</h4>
 <input v-model="msg">
 <p>{{msg}}</p>
 </div>
</template>
<template id="child-component2">
 <div class="child">
 <h4>我是子組件2</h4>
 <input v-model="msg">
 <p>{{msg}}</p>
 </div>
</template>
<script>
// 注冊
Vue.component('parent-component', {
 template: '#parent-component',
 data(){
 return{
  msg1:'',
  msg2:'',
 }
 },
 methods:{
 getData1(){
  this.msg1 = this.$refs.c1.msg;
 },
 getData2(){
  this.msg2 = this.$refs.c2.msg;
 }, 
 },
 components:{
 'child-component1':{
  template:'#child-component1',
  data(){
  return{
   msg:'',
  }
  },
 },
 'child-component2':{
  template:'#child-component2',
  data(){
  return{
   msg:'',
  }
  },
 }, 
 } 
})
// 創建根實例
new Vue({
 el: '#example',
})
</script>

以上是“Vue組件實例間直接訪問的示例分析”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

vue
AI

耿马| 正定县| 达尔| 濮阳县| 广饶县| 洪湖市| 法库县| 苏尼特左旗| 河东区| 柏乡县| 绿春县| 盐津县| 闽清县| 宜良县| 南陵县| 台中市| 汉川市| 当雄县| 利辛县| 新蔡县| 福贡县| 兴义市| 佛教| 宁安市| 伊春市| 逊克县| 汶川县| 湟源县| 勐海县| 南康市| 无锡市| 元朗区| 湖南省| 通河县| 文山县| 常山县| 克拉玛依市| 宜兴市| 姚安县| 康平县| 蚌埠市|