這篇文章給大家分享的是有關(guān)vue中如何實(shí)現(xiàn)讓子組件修改父組件數(shù)據(jù)的方法的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧。
站在用戶(hù)的角度思考問(wèn)題,與客戶(hù)深入溝通,找到銀海網(wǎng)站設(shè)計(jì)與銀海網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗(yàn),讓設(shè)計(jì)與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個(gè)性化、用戶(hù)體驗(yàn)好的作品,建站類(lèi)型包括:成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站制作、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、空間域名、網(wǎng)頁(yè)空間、企業(yè)郵箱。業(yè)務(wù)覆蓋銀海地區(qū)。
一、關(guān)于vue中watch的認(rèn)識(shí)
我們要監(jiān)聽(tīng)一個(gè)屬性的的變化就使用watch一般是父組件傳遞給子組件的時(shí)候
?1、常見(jiàn)的使用場(chǎng)景
... watch:{ value(val) { console.log(val); this.visible = val; } } ...
相關(guān)學(xué)習(xí)推薦:javascript視頻教程
?2、如果要一開(kāi)始就執(zhí)行
... watch: { firstName: { handler(newName, oldName) { this.fullName = newName + '-' + this.lastName; }, immediate: true, } } ...
?3、深度監(jiān)聽(tīng)(數(shù)組、對(duì)象)
... watch: { obj: { handler(newName, oldName) { console.log('///') }, immediate: true, deep: true, } ...
二、關(guān)于子組件修改父組件屬性認(rèn)識(shí)
在vue2.0+ 后不再是雙向綁定,如果要進(jìn)行雙向綁定需要特殊處理。
[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 being mutated: "你修改的屬性名"
?1、通過(guò)事件發(fā)送給父組件來(lái)修改
**在子組件test1中** <input type="text" v-model="book"/> <button @click="add">添加</button> <p v-for="(item, index) of books" :key="index">{{item}}</p> ... methods: { add() { // 直接把數(shù)據(jù)發(fā)送給父組件 this.$emit('update', this.book); this.book = ''; }, }, **在父組件中** <test1 :books="books" @update="addBook"></test1> ... addBook(val) { this.books = new Array(val) },
?2、使用.sync 來(lái)讓子組件修改父組件的值(其實(shí)是上面方法的精簡(jiǎn)版)
**在父組件中,直接在需要傳遞的屬性后面加上.sync** <test4 :word.sync="word"/> **在子組件中** <template> <p> <h4>{{word}}</h4> <input type="text" v-model="str" /> </p> </template> <script> export default { props: { word: { type: String, default: '', }, }, data() { return { str: '', } }, watch: { str(newVal, oldVal) { // 在監(jiān)聽(tīng)你使用update事件來(lái)更新word,而在父組件不需要調(diào)用該函數(shù) this.$emit('update:word', newVal); } } } </script>
?3、在子組件中拷貝一份副本
**子組件中** export default { props: { // 已經(jīng)選中的 checkModalGroup: { type: Array, default: [], required: false, } }, data() { return{ copyCheckModalGroup: this.checkModalGroup, // 選中的 } }, methods: { // 一個(gè)一個(gè)的選擇 checkAllGroupChange(data) { // 把當(dāng)前的發(fā)送給父組件 this.$emit('updata', data); }, }, watch: { checkModalGroup(newVal, oldVal) { this.copyCheckModalGroup = newVal; } } } **父組件中直接更新傳遞給子組件的數(shù)據(jù)就可以** ... // 更新子組件數(shù)據(jù) roleCheckUpdata(data) { this.roleGroup = data; }, ...
感謝各位的閱讀!關(guān)于vue中如何實(shí)現(xiàn)讓子組件修改父組件數(shù)據(jù)的方法就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!
分享文章:vue中如何實(shí)現(xiàn)讓子組件修改父組件數(shù)據(jù)的方法
文章URL:http://m.rwnh.cn/article10/jdgsdo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供企業(yè)建站、網(wǎng)站制作、服務(wù)器托管、移動(dòng)網(wǎng)站建設(shè)、域名注冊(cè)、建站公司
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話(huà):028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)