vue中如何让子组件修改父组件数据
Vue 中子组件修改父组件数据 Vue 中子组件修改父组件数据是指在 Vue 中,子组件如何修改父组件的数据。这种情况在开发中经常遇到,例如在表单提交时,子组件需要将数据传递给父组件进行处理。在 Vue 中,子组件修改父组件数据的方式有多种,下面将详细介绍。 一、使用 Watch 在 Vue 中,watch 是一个非常重要的概念,它可以监听页面上数据的变化。当我们需要监听一个属性的变化时,就可以使用 watch。watch 有多种使用场景,下面将详细介绍。 1. 常见的使用场景 在 Vue 中,watch 是一个监控数据变化的函数。例如,我们可以使用 watch 监控一个输入框的变化,当输入框的值发生变化时,执行某些操作。 ``` watch: { value(val) { console.log(val); this.visible = val; } } ``` 2. 如果要一开始就执行 在某些情况下,我们需要 watch 一开始就执行,而不是等到数据变化时才执行。这时,我们可以使用 immediate 属性来实现。 ``` watch: { firstName: { handler(newName, oldName) { this.fullName = newName + '-' + this.lastName; }, immediate: true, } } ``` 3. 深度监听 在某些情况下,我们需要深度监听一个对象或数组的变化。这时,我们可以使用 deep 属性来实现。 ``` watch: { obj: { handler(newName, oldName) { console.log('///'); }, immediate: true, deep: true, } } ``` 二、子组件修改父组件属性 在 Vue 中,子组件修改父组件属性是指子组件将数据传递给父组件的过程。在 Vue 2.0+ 后,不再是双向绑定,如果要进行双向绑定需要特殊处理。 1. 通过事件发送给父组件来修改 在子组件中,我们可以使用 $emit 方法来发送事件给父组件,父组件可以监听这个事件来修改数据。 ``` // 在子组件中 <template> <div> <input type="text" v-model="book"/> <button @click="add">添加</button> <p v-for="(item, index) of books" :key="index">{{item}}</p> </div> </template> <script> export default { data() { return { book: '', } }, methods: { add() { // 直接把数据发送给父组件 this.$emit('update', this.book); this.book = ''; }, }, } </script> // 在父组件中 <test1 :books="books" @update="addBook"></test1> <script> export default { data() { return { books: [], } }, methods: { addBook(val) { this.books = new Array(val); }, }, } </script> ``` 2. 使用 .sync 来让子组件修改父组件的值 使用 .sync 可以让子组件修改父组件的值,实际上是上面的方法的精简版。 ``` // 在父组件中 <test4 :word.sync="word"/> // 在子组件中 <template> <div> <h3>{{word}}</h3> <input type="text" v-model="str" /> </div> </template> <script> export default { props: { word: { type: String, default: '', }, }, data() { return { str: '', } }, watch: { str(newVal, oldVal) { // 在监听你使用 update 事件来更新 word,而在父组件不需要调用该函数 this.$emit('update:word', newVal); } }, } </script> ``` 3. 在子组件中拷贝一份副本 在子组件中,我们可以拷贝一份父组件传递过来的数据副本,以便在子组件中进行修改。 ``` // 在子组件中 export default { props: { checkModalGroup: { type: Array, default: [], required: false, } }, data() { return { copyCheckModalGroup: this.checkModalGroup, // 选中的 } }, methods: { // 一个一个的, }, } ``` 在 Vue 中子组件修改父组件数据有多种方式,每种方式都有其特点和使用场景。在实际开发中,我们需要根据具体情况选择合适的方式来实现子组件修改父组件数据。