Vue组件实例间的直接访问实现代码
网络编程 2021-07-04 18:33www.168986.cn编程入门
在组件实例中,Vue提供了相应的属性,包括$parent、$children、$refs和$root,这些属性都挂载在组件的this上。本文将详细介绍Vue组件实例间的直接访问,需要的朋友可以参考下
前面的话
有时候需要父组件访问子组件,子组件访问父组件,或者是子组件访问根组件。 在组件实例中,Vue提供了相应的属性,包括$parent、$children、$refs和$root,这些属性都挂载在组件的this上。本文将详细介绍Vue组件实例间的直接访问
$parent
$parent表示父组件的实例,该属性只读
狼蚁网站SEO优化是一个简易实例
<div id="example"> <parent-ponent></parent-ponent> </div> <template id="parent-ponent"> <div class="parent"> <h3>我是父组件</h3> <input v-model="parentMsg"> <p>{{parentMsg}}</p> <child-ponent></child-ponent> </div> </template> <template id="child-ponent"> <div class="child"> <h3>我是子组件</h3> <p>{{msg}}</p> <button v-on:click="showData">显示父组件数据</button> </div> </template>
<script> // 注册 Vue.ponent('parent-ponent', { template: '#parent-ponent', data(){ return{ parentMsg:'我是父组件的数据' } }, ponents:{ 'child-ponent':{ template:'#child-ponent', data(){ return{ msg:'' } }, methods:{ showData(){ this.msg = this.$parent.parentMsg; } } } } }) // 创建根实例 new Vue({ el: '#example' }) </script>
$root
$root表示当前组件树的根 Vue 实例。如果当前实例没有父实例,此实例将会是其自己。该属性只读
<div id="example"> <h3>我是根组件</h3> <input v-model="rootMsg"> <p>{{rootMsg}}</p> <parent-ponent></parent-ponent> </div> <template id="parent-ponent"> <div class="parent"> <h3>我是父组件</h3> <input v-model="parentMsg"> <p>{{parentMsg}}</p> <child-ponent></child-ponent> </div> </template> <template id="child-ponent"> <div class="child"> <h3>我是子组件</h3> <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.ponent('parent-ponent', { template: '#parent-ponent', data(){ return{ parentMsg:'我是父组件的数据' } }, ponents:{ 'child-ponent':{ template:'#child-ponent', 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-ponent></parent-ponent> </div> <template id="parent-ponent"> <div class="parent"> <h3>我是父组件</h3> <button @click="getData">获取子组件数据</button> <br> <div v-html="msg"></div> <child-ponent1></child-ponent1> <child-ponent2></child-ponent2> </div> </template> <template id="child-ponent1"> <div class="child"> <h3>我是子组件1</h3> <input v-model="msg"> <p>{{msg}}</p> </div> </template> <template id="child-ponent2"> <div class="child"> <h3>我是子组件2</h3> <input v-model="msg"> <p>{{msg}}</p> </div> </template>
<script> // 注册 Vue.ponent('parent-ponent', { template: '#parent-ponent', 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; } }, ponents:{ 'child-ponent1':{ template:'#child-ponent1', data(){ return{ msg:'', } }, }, 'child-ponent2':{ template:'#child-ponent2', data(){ return{ msg:'', } }, }, } }) // 创建根实例 new Vue({ el: '#example', }) </script>
$refs
组件个数较多时,难以记住各个组件的顺序和位置,通过序号访问子组件不是很方便
在子组件上使用ref属性,可以给子组件指定一个索引ID
<child-ponent1 ref="c1"></child-ponent1> <child-ponent2 ref="c2"></child-ponent2>
在父组件中,则通过$refs.索引ID访问子组件的实例
this.$refs.c1
this.$refs.c2
<div id="example"> <parent-ponent></parent-ponent> </div> <template id="parent-ponent"> <div class="parent"> <h3>我是父组件</h3> <div> <button @click="getData1">获取子组件c1的数据</button> <p>{{msg1}}</p> </div> <div> <button @click="getData2">获取子组件c2的数据</button> <p>{{msg2}}</p> </div> <child-ponent1 ref="c1"></child-ponent1> <child-ponent2 ref="c2"></child-ponent2> </div> </template> <template id="child-ponent1"> <div class="child"> <h3>我是子组件1</h3> <input v-model="msg"> <p>{{msg}}</p> </div> </template> <template id="child-ponent2"> <div class="child"> <h3>我是子组件2</h3> <input v-model="msg"> <p>{{msg}}</p> </div> </template>
<script> // 注册 Vue.ponent('parent-ponent', { template: '#parent-ponent', data(){ return{ msg1:'', msg2:'', } }, methods:{ getData1(){ this.msg1 = this.$refs.c1.msg; }, getData2(){ this.msg2 = this.$refs.c2.msg; }, }, ponents:{ 'child-ponent1':{ template:'#child-ponent1', data(){ return{ msg:'', } }, }, 'child-ponent2':{ template:'#child-ponent2', data(){ return{ msg:'', } }, }, } }) // 创建根实例 new Vue({ el: '#example', }) </script>
虽然vue提供了以上方式对组件实例进行直接访问,但并不推荐这么做。这会导致组件间紧密耦合,且自身状态难以理解,所以尽量使用props、自定义事件以及内容分发slot来传递数据。
上一篇:jQuery实现表格冻结顶栏效果
下一篇:JavaScript贪吃蛇小组件实例代码
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程