您好,登录后才能下订单哦!
这篇文章主要介绍“vue父子组件进行通信方式是怎样的”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“vue父子组件进行通信方式是怎样的”文章能帮助大家解决问题。
如图所示,父组件向子组件传递数据,可以通过props
,子组件向父组件传递数据可以通过触发事件来进行。
父组件向子组件传递的数据,通过props进行传递,我们可以把props理解为属性。props传递存在两种格式,一种是数组格式,另一种是对象类型格式。其中第二种对象类型可以设置是否为必须数据,以及是否存在默认值数据。
第一种用法:数组
//父组件 <HelloWorld :title="title"></HelloWorld> //子组件 props: ["title"],
第二种用法:对象
//父组件: <HelloWorld :title="title"></HelloWorld> //子组件: props: { title:{ type:String, required:true, default() { return "我是title" } } }, //上面default为什么是一个函数? 因为是一个组件,组件在其他组件都能使用,并且如果default是一个key;value形式,并且value是一个引用 类型的值,则如果要更改props的值,则其他组件的值也会更改。
type属性的类型有哪些?
type属性的类型有:String,Number,Boolean,Array,Object,Date, Function,Symbol。
三、对象类型的其他写法
props:{ messageinfo:String, propsA:Number, propsC:{ type:String, required:true }, propsE:{ type:Object, default(){ return {message:"hello"} } }, //自定义验证函数 title:{ validator(value) { console.log("hhh") return ["hello","world"].includes(value) } } }
在props
名使用驼峰命名,则可以使用-
连接
//父组件 <HelloWorld :mess-age="title"></HelloWorld> //子组件 props: { messAge:{ type:String, } },
如果在父组件中设置attributes,但是在子组件中的props不存在该属性,则如果子组件存在根节点,则就会该属性就会继承到根节点上。
如果我们不希望根节点继承,可以使用inhertAttrs:false
,这样就可以继承到非根节点上。
<template> <div>{{ messAge }} <h2 :class="$attrs.class">hhhhh</h2> </div> </template>
如果要是存在多个根节点,则就会显示warning,表示不能自动继承,此时我们可以使用$attrs.属性名
来实现继承属性。
<template> <h2>{{ messAge }}</h2> <h2>哈哈哈</h2> <h2 :class="$attrs.class">呵呵呵</h2> </template>
1、当子组件有一些事情发生的时候,比如在组件中发生点击,父组件需要切换内容。2 2、子组件有一些内容想要传递给父组件。 3、子组件通过$emit()触发事件,并且在emits中进行注册事件。 4、注册的事件可以是数组类型的,也可以是对象类型。
数组格式
//子组件 <template> <button @click="increment">+1</button> <button @click="decrement">-1</button> </template> <script> export default { emits:["add", "sub"], data() { return { } }, methods: { increment: function () { this.$emit("add") }, decrement: function () { this.$emit("sub") }, }, }; </script> <style scoped></style>
//父组件 <template> <h2>当前的数字是:{{counter}}</h2> <HelloWorld @add="addOne" @sub="subOne"></HelloWorld> </template> <script> import HelloWorld from "./components/HelloWorld.vue" export default { components: { HelloWorld }, data() { return { counter: 0 } }, methods:{ addOne() { this.counter++ }, subOne() { this.counter-- } } } </script> <style scoped></style>
数组格式:如果我们想要设置自定义事件,可以使用emits:["add", "sub"],
数组格式。
对象格式
:主要是针对需要向父组件传递参数的例子.
//父组件 <template> <h2>当前的数字是:{{counter}}</h2> <HelloWorld @add="addOne" @sub="subOne" @addN="addNumbers"></HelloWorld> </template> <script> import HelloWorld from "./components/HelloWorld.vue" export default { components: { HelloWorld }, data() { return { counter: 0, } }, methods:{ addOne() { this.counter++ }, subOne() { this.counter-- }, addNumbers(value) { this.counter += parseInt(value) } } } </script> <style scoped></style>
//子组件 <template> <button @click="increment">+1</button> <button @click="decrement">-1</button> <input type="text" v-model="num" /> <button @click="incrementN">+N</button> </template> <script> export default { emits: { add:null, sub:null, addN:(dispatch) => { if(dispatch > 10) { return true } return false } }, data() { return { num: 0, }; }, methods: { increment: function () { this.$emit("add"); }, decrement: function () { this.$emit("sub"); }, incrementN: function () { this.$emit("addN", this.num); }, }, }; </script> <style scoped></style>
这里采用对象的格式:可以进行传入参数的判断。如果符合则返回true
,如果不符合则返回false
,但是仍可以执行,只是在控制台出现warning
.
emits: { add:null, sub:null, addN:(dispatch) => { if(dispatch > 10) { return true } return false } }
关于“vue父子组件进行通信方式是怎样的”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识,可以关注亿速云行业资讯频道,小编每天都会为大家更新不同的知识点。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。