一、關於vue中watch的認知
我們要監聽一個屬性的變化就使用watch一般是父元件傳遞給子元件的時候
#•1、常見的使用場景
... watch:{ value(val) { console.log(val); this.visible = val; } } ...
相關學習推薦:javascript影片教學
•2、如果要一開始就執行
... watch: { firstName: { handler(newName, oldName) { this.fullName = newName + '-' + this.lastName; }, immediate: true, } } ...
•3、深度監聽(數組、物件)
... watch: { obj: { handler(newName, oldName) { console.log('///') }, immediate: true, deep: true, } ...
二、關於子元件修改父元件屬性認識
在vue2.0 後不再是雙向綁定,如果要進行雙向綁定需要特殊處理。
[Vue warn]: Avoid mutating a prop directly since the value will be overwritten whenever the parent component re-renders. Instead, use a data or computed property based on the prop's value. Prop.修改的屬性名稱"
•1、透過事件傳送給父元件來修改
**在子组件test1中** <input type="text" v-model="book"/> <button @click="add">添加</button> <p v-for="(item, index) of books" :key="index">{{item}}</p> ... methods: { add() { // 直接把数据发送给父组件 this.$emit('update', this.book); this.book = ''; }, }, **在父组件中** <test1 :books="books" @update="addBook"></test1> ... addBook(val) { this.books = new Array(val) },
•2、使用.sync 來讓子元件修改父元件的值(其實是上面方法的精簡版)
**在父组件中,直接在需要传递的属性后面加上.sync** <test4 :word.sync="word"/> **在子组件中** <template> <p> <h3>{{word}}</h3> <input type="text" v-model="str" /> </p> </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: { // 一个一个的选择 checkAllGroupChange(data) { // 把当前的发送给父组件 this.$emit('updata', data); }, }, watch: { checkModalGroup(newVal, oldVal) { this.copyCheckModalGroup = newVal; } } } **父组件中直接更新传递给子组件的数据就可以** ... // 更新子组件数据 roleCheckUpdata(data) { this.roleGroup = data; }, ...
相關學習推薦:程式設計影片
以上是vue中讓子元件修改父元件資料的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!