vue中使用v-model完成组件间的通信
网络编程 2021-07-04 15:51www.168986.cn编程入门
vue中有一个很神奇的东西叫v-model,它可以完成我们的需求。,本文重点给大家介绍vue中使用v-model完成组件间的通信,需要的朋友可以参考下
以上的两种方法,都是实现的单向数组传递,那如何实现两个组件之间的双向传递呢?
即,在父组件中修改了值,子组件会立即更新。
在子组件中修改了值,父组件中立即更新。
vue中有一个很神奇的东西叫v-model
,它可以完成我们的需求。
使用v-model
过程中,父组件我们还是需要将子组件正常引入,只是传值方式改成了v-model
父组件
<template> <div> {{fatherText}} <Child v-model="fatherText"></Child>//调用子组件,并将 fatherText传递给子组件 <button @click="changeChild">changeChildButton</button> </div> </template> <script> import Child from "./Child.vue"; export default { name: "father", data() { return { fatherText: "i'm fathertext" }; }, ponents: { Child }, methods: { changeChild() { this.fatherText = "father change the text"; } } }; </script>
子组件
<template> <div> <p class="child" @click="change">{{fatherText}}</p>//正常使用fatherText的值,并添加一个修改值 的方法 </div> </template> <script> export default { name: "child", model: {//添加了model方法,用于接收v-model传递的参数 prop: "fatherText", //父组件中变量的传递 event: "changeChild" //事件传递 }, props: { fatherText: {//正常使用props接收fatherText的值 type: String } }, data() { return { }; }, methods: { change(){ this.fatherText = 'son change the text' } } }; </script>
在这里,报了一个错误,这是因为数据流是单向的,我们在这里,子组件不应该直接修改props里的值。
这里不能直接修改,所以我们需要迂回着修改,在子组件中定义一个自己的变量,再将props的值赋值到自己的变量,修改自己的变量是可以的。
子组件 - 修改props中的值
<template> <div> <p class="child" @click="change">{{childText}}</p> </div> </template> <script> export default { name: "child", model: { prop: "fatherText", //父组件中变量的传递 event: "changeChild" //事件传递 }, props: { fatherText: { type: String } }, data() { return { childText: this.fatherText //定义自己的变量childText }; }, methods: { change() { this.childText = "son change the test";//修改自己的变量 } } };
两个组件间更新
完成了上述代码,你会发现两个组件都改变的内容,只更新了自身组件的内容,如何使两个组件进行同步更新呢?
这里需要使用我的Wath方法,来进行监听传递组件的变量
<template> <div> <p class="child" @click="changeChild">{{childText}}</p> </div> </template> <script> export default { name: "child", model: { prop: "fatherText", //父组件中变量的传递 event: "changeChild" //事件传递 }, props: { fatherText: { type: String } }, data() { return { childText: this.fatherText }; }, methods: { changeChild() { this.childText = "son change the test"; } }, watch: { fatherText(newtext) {//使用父组件中变量名为函数名,监听fatherText的变化,如果变化,则改变子组件中的值 this.childText = newtext; }, childText(newtext) {//监听子组件中childText变化,如果变化,则通知父组件,进行更新 this.$emit("changeChild", newtext); } } };
以上所述是长沙网络推广给大家介绍的vue中使用v-model完成组件间的通信希望对大家有所帮助,如果大家有任何疑问请给我留言,长沙网络推广会及时回复大家的。在此也非常感谢大家对狼蚁SEO网站的支持!
如果你觉得本文对你有帮助,欢迎网络推广网站推广转载,烦请注明出处,谢谢!
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程