您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
本篇文章为大家展示了怎么在vue.js中实现v-model双向数据绑定,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。
我们都清楚v-model其实就是vue的一个语法糖,用于在表单控件或者组件上创建双向绑定。
//表单控件上使用v-model <template> <input type="text" v-model="name" /> <input type="checkbox" v-model="checked"/> <!--上面的input和下面的input实现的效果是一样的--> <input type="text" :value="name" @input="name=e.target.vlaue"/> <input type="checkBox" :checked="checked" @click=e.target.checked/> {{name}} </template> <script> export default{ data(){ return { name:"", checked:false, } } } </script>
vue中父子组件的props通信都是单向的。父组件通过props向下传值给子组件,子组件通过$emit触发父组件中的方法。所以自定义组件是无法直接使用v-model来实现v-model双向绑定的。那么有什么办法可以实现呢?
//父组件 <template> <div> <c-input v-model="form.name"></c-input> <c-input v-model="form.password"></c-input> <!--上面的input等价于下面的input--> <!--<c-input :value="form.name" @input="form.name=e.target.value"/> <c-input :value="form.password" @input="form.password=e.target.value"/>--> </div> </template> <script> import cInput from "./components/Input" export default { components:{ cInput }, data() { return { form:{ name:"", password:"" }, } }, } </script>
//子组件 cInput <template> <input type="text" :value="inputValue" @input="handleInput"> </template> <script> export default { props:{ value:{ type:String, default:"", required:true, } }, data() { return { inputValue:this.value, } }, methods:{ handleInput(e){ const value=e.target.value; this.inputValue=value; this.$emit("input",value); }, } } </script>
根据上面的示例代码可以看出,子组件c-input上绑定了父组件form的值,在子组件中通过:value接收了这个值,然后我们在子组件中修改了这个值,并且通过$emit触发了父组件中的input事件将修改的值又赋值给了form。
上述内容就是怎么在vue.js中实现v-model双向数据绑定,你们学到知识或技能了吗?如果还想学到更多技能或者丰富自己的知识储备,欢迎关注亿速云行业资讯频道。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。