vue.js入门(3)——详解组件通信
网络编程 2021-07-04 19:19www.168986.cn编程入门
这篇文章主要介绍了vue.js入门(3)——详解组件通信 ,长沙网络推广觉得挺不错的,现在分享给大家,也给大家做个参考。
本文介绍vue.js组件,具体如下
5.2 组件通信
尽管子组件可以用this.$parent访问它的父组件及其父链上任意的实例,不过子组件应当避免直接依赖父组件的数据,尽量显式地使用 props 传递数据。,在子组件中修改父组件的状态是非常糟糕的做法,因为
1.这让父组件与子组件紧密地耦合;
2.只看父组件,很难理解父组件的状态。因为它可能被任意子组件修改!理想情况下,只有组件自己能修改它的状态。
每个Vue实例都是一个事件触发器
- $on()——监听事件。
- $emit()——把事件沿着作用域链向上派送。(触发事件)
- $dispatch()——派发事件,事件沿着父链冒泡。
- $broadcast()——广播事件,事件向下传导给所有的后代。
5.2.1 监听与触发
v-on监听自定义事件
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <!--子组件模板--> <template id="child-template"> <input v-model="msg" /> <button v-on:click="notify">Dispatch Event</button> </template> <!--父组件模板--> <div id="events-example"> <p>Messages: {{ messages | json }}</p> <child v-on:child-msg="handleIt"></child> </div> </body> <script src="js/vue.js"></script> <script> // 注册子组件 // 将当前消息派发出去 Vue.ponent('child', { template: '#child-template', data: function (){ return { msg: 'hello' } }, methods: { notify: function() { if(this.msg.trim()){ this.$dispatch('child-msg',this.msg); this.msg = ''; } } } }) // 初始化父组件 // 在收到消息时将事件推入一个数组中 var parent = new Vue({ el: '#events-example', data: { messages: [] }, methods:{ 'handleIt': function(){ alert("a"); } } }) </script> </html>
父组件可以在使用子组件的地方直接用 v-on 来监听子组件触发的事件
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <div id="counter-event-example"> <p>{{ total }}</p> <button-counter v-on:increment="incrementTotal"></button-counter> <button-counter v-on:increment="incrementTotal"></button-counter> </div> </body> <script src="js/vue.js" type="text/javascript" charset="utf-8"></script> <script type="text/javascript"> Vue.ponent('button-counter', { template: '<button v-on:click="increment">{{ counter }}</button>', data: function () { return { counter: 0 } }, methods: { increment: function () { this.counter += 1 this.$emit('increment') } }, }) new Vue({ el: '#counter-event-example', data: { total: 0 }, methods: { incrementTotal: function () { this.total += 1 } } }) </script> </html>
在某个组件的根元素上监听一个原生事件。可以使用 .native 修饰v-on 。例如
<my-ponent v-on:click.native="doTheThing"></my-ponent>
5.2.2 派发事件——$dispatch()
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <div id="app"> <p>Messages: {{ messages | json }}</p> <child-ponent></child-ponent> </div> <template id="child-ponent"> <input v-model="msg" /> <button v-on:click="notify">Dispatch Event</button> </template> <script src="js/vue.js"></script> <script> // 注册子组件 Vue.ponent('child-ponent', { template: '#child-ponent', data: function() { return { msg: '' } }, methods: { notify: function() { if (this.msg.trim()) { this.$dispatch('child-msg', this.msg) this.msg = '' } } } }) // 初始化父组件 new Vue({ el: '#app', data: { messages: [] }, events: { 'child-msg': function(msg) { this.messages.push(msg) } } }) </script> </body> </html>
- 子组件的button元素绑定了click事件,该事件指向notify方法
- 子组件的notify方法在处理时,调用了$dispatch,将事件派发到父组件的child-msg事件,并给该该事件提供了一个msg参数
- 父组件的events选项中定义了child-msg事件,父组件接收到子组件的派发后,调用child-msg事件。
5.2.3 广播事件——$broadcast()
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <div id="app"> <input v-model="msg" /> <button v-on:click="notify">Broadcast Event</button> <child-ponent></child-ponent> </div> <template id="child-ponent"> <ul> <li v-for="item in messages"> 父组件录入了信息{{ item }} </li> </ul> </template> <script src="js/vue.js"></script> <script> // 注册子组件 Vue.ponent('child-ponent', { template: '#child-ponent', data: function() { return { messages: [] } }, events: { 'parent-msg': function(msg) { this.messages.push(msg) } } }) // 初始化父组件 new Vue({ el: '#app', data: { msg: '' }, methods: { notify: function() { if (this.msg.trim()) { this.$broadcast('parent-msg', this.msg) } } } }) </script> </body> </html>
和派发事件相反。前者在子组件绑定,调用$dispatch派发到父组件;后者在父组件中绑定,调用$broadcast广播到子组件。
5.2.4 父子组件之间的访问
- 父组件访问子组件使用$children或$refs
- 子组件访问父组件使用$parent
- 子组件访问根组件使用$root
$children
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <div id="app"> <parent-ponent></parent-ponent> </div> <template id="parent-ponent"> <child-ponent1></child-ponent1> <child-ponent2></child-ponent2> <button v-on:click="showChildComponentData">显示子组件的数据</button> </template> <template id="child-ponent1"> <h2>This is child ponent 1</h2> </template> <template id="child-ponent2"> <h2>This is child ponent 2</h2> </template> <script src="js/vue.js"></script> <script> Vue.ponent('parent-ponent', { template: '#parent-ponent', ponents: { 'child-ponent1': { template: '#child-ponent1', data: function() { return { msg: 'child ponent 111111' } } }, 'child-ponent2': { template: '#child-ponent2', data: function() { return { msg: 'child ponent 222222' } } } }, methods: { showChildComponentData: function() { for (var i = 0; i < this.$children.length; i++) { alert(this.$children[i].msg) } } } }) new Vue({ el: '#app' }) </script> </body> </html>
$ref可以给子组件指定索引ID
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <div id="app"> <parent-ponent></parent-ponent> </div> <template id="parent-ponent"> <!--<child-ponent1></child-ponent1> <child-ponent2></child-ponent2>--> <child-ponent1 v-ref:1></child-ponent1> <child-ponent2 v-ref:2></child-ponent2> <button v-on:click="showChildComponentData">显示子组件的数据</button> </template> <template id="child-ponent1"> <h2>This is child ponent 1</h2> </template> <template id="child-ponent2"> <h2>This is child ponent 2</h2> </template> <script src="js/vue.js"></script> <script> Vue.ponent('parent-ponent', { template: '#parent-ponent', ponents: { 'child-ponent1': { template: '#child-ponent1', data: function() { return { msg: 'child ponent 111111' } } }, 'child-ponent2': { template: '#child-ponent2', data: function() { return { msg: 'child ponent 222222' } } } }, methods: { showChildComponentData: function() { // for (var i = 0; i < this.$children.length; i++) { // alert(this.$children[i].msg) // } alert(this.$refs.1.msg); alert(this.$refs.2.msg); } } }) new Vue({ el: '#app' }) </script> </body> </html>
效果与$children相同。
$parent
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <div id="app"> <parent-ponent></parent-ponent> </div> <template id="parent-ponent"> <child-ponent></child-ponent> </template> <template id="child-ponent"> <h2>This is a child ponent</h2> <button v-on:click="showParentComponentData">显示父组件的数据</button> </template> <script src="js/vue.js"></script> <script> Vue.ponent('parent-ponent', { template: '#parent-ponent', ponents: { 'child-ponent': { template: '#child-ponent', methods: { showParentComponentData: function() { alert(this.$parent.msg) } } } }, data: function() { return { msg: 'parent ponent message' } } }) new Vue({ el: '#app' }) </script> </body> </html>
如开篇所提,不建议在子组件中修改父组件的状态。
5.2.5 非父子组件通信
有时候非父子关系的组件也需要通信。在简单的场景下,使用一个空的 Vue 实例作为中央事件总线
var bus = new Vue() // 触发组件 A 中的事件 bus.$emit('id-selected', 1) // 在组件 B 创建的钩子中监听事件 bus.$on('id-selected', function (id) { // ... })
在更多复杂的情况下,可以考虑使用专门的 状态管理模式。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持狼蚁SEO。
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程