小編給大家分享一下如何實現(xiàn)vuex與組件data之間的數(shù)據(jù)更新,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
在南陵等地區(qū),都構建了全面的區(qū)域性戰(zhàn)略布局,加強發(fā)展的系統(tǒng)性、市場前瞻性、產品創(chuàng)新能力,以專注、極致的服務理念,為客戶提供成都網(wǎng)站建設、成都網(wǎng)站設計 網(wǎng)站設計制作按需搭建網(wǎng)站,公司網(wǎng)站建設,企業(yè)網(wǎng)站建設,成都品牌網(wǎng)站建設,成都營銷網(wǎng)站建設,外貿營銷網(wǎng)站建設,南陵網(wǎng)站建設費用合理。
問題
我們都知道,在Vue組件中,data部分的數(shù)據(jù)與視圖之間是可以同步更新的,假如我們更新了data中的數(shù)據(jù),那么視圖上的數(shù)據(jù)就會被同步更新,這就是Vue所謂的數(shù)據(jù)驅動視圖思想。
當我們使用Vuex時,我們也可以通過在視圖上通過 $store.state.[DataKey] 來獲取Vuex中 state 的數(shù)據(jù),且當 state 中的數(shù)據(jù)發(fā)生變化時,視圖上的數(shù)據(jù)也是可以同步更新的,這似乎看起來很順利。
但是當我們想要通過將 state 中的數(shù)據(jù)綁定到Vue組件的 data 上,然后再在視圖上去調用 data ,如下:
<template> <div>{{userInfo}}</div> </template> <script> export default { data() { return { userInfo: this.$store.state.userInfo; }; } }; </script>
那么我們就會發(fā)現(xiàn),當我們去改變 state 中的 userInfo 時,視圖是不會更新的,相對應的 data 中的 userInfo 也不會被更改,因為這種調用方式是非常規(guī)的。
當Vue在組件加載完畢前,會將 data 中的所有數(shù)據(jù)初始化完畢,之后便只會被動改變數(shù)據(jù)。然而等組件數(shù)據(jù)初始化完畢之后,即使 state 中的數(shù)據(jù)發(fā)生了改變, data 中的數(shù)據(jù)與其并非存在綁定關系,data 僅僅在數(shù)據(jù)初始化階段去調用了 state 中的數(shù)據(jù),所以 data 中的數(shù)據(jù)并不會根據(jù) state 中的數(shù)據(jù)發(fā)生改變而改變。
所以如果想在視圖上實現(xiàn)與 state 中的數(shù)據(jù)保持同步更新的話,只能采用以下方式:
<template> <div>{{$store.state.userInfo}}</div> </template>
解決
那么如果我們必須想要在 data 上綁定 state 中的數(shù)據(jù),讓 state 去驅動 data 發(fā)生改變,那我們該如何做呢?
我們可以嘗試以下兩中方法:
1. 使用computed屬性去獲取state中的數(shù)據(jù)
這種方式其實并非是去調用了 data 中的數(shù)據(jù),而是為組件添加了一個計算 computed 屬性。computed 通常用于復雜數(shù)據(jù)的計算,它實際上是一個函數(shù),在函數(shù)內部進行預算后,返回一個運算結果,同時它有一個重要的特性:當在它內部需要進行預算的數(shù)據(jù)發(fā)生改變后,它重新進行數(shù)據(jù)運算并返回結果。 所以,我們可以用 computed 去返回 state 中的數(shù)據(jù),當 state 中的數(shù)據(jù)發(fā)生改變后,computed 會感知到,并重新獲取 state 中的數(shù)據(jù),并返回新的值。
<template> <div>{{userInfo}}</div> </template> <script> export default { computed: { userInfo(){ return this.$store.state.userInfo; } } }; </script>
2. 使用watch監(jiān)聽state中的數(shù)據(jù)
這種方式就很好理解了,就是通過組件的 watch 屬性,為 state 中的某一項數(shù)據(jù)添加一個監(jiān)聽,當數(shù)據(jù)發(fā)生改變的時候觸發(fā)監(jiān)聽事件,在監(jiān)聽事件內部中去更改 data 中對應的數(shù)據(jù),即可變相的讓 data 中的數(shù)據(jù)去根據(jù) state 中的數(shù)據(jù)發(fā)生改變而改變。
<template> <div>{{userInfo}}</div> </template> <script> export default { data() { return { userInfo: this.$store.state.userInfo; }; }, watch: { "this.$store.state.userInfo"() { this.userInfo = this.$store.getters.getUserInfo; // 按照規(guī)范在這里應該去使用getters來獲取數(shù)據(jù) } } }; </script>
以上是“如何實現(xiàn)vuex與組件data之間的數(shù)據(jù)更新”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
網(wǎng)站名稱:如何實現(xiàn)vuex與組件data之間的數(shù)據(jù)更新
本文來源:http://jinyejixie.com/article46/ipieeg.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站收錄、動態(tài)網(wǎng)站、企業(yè)建站、品牌網(wǎng)站制作、虛擬主機、服務器托管
聲明:本網(wǎng)站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)