您好,登錄后才能下訂單哦!
本文小編為大家詳細(xì)介紹“怎么實(shí)現(xiàn)vuex與組件data之間的數(shù)據(jù)更新”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“怎么實(shí)現(xiàn)vuex與組件data之間的數(shù)據(jù)更新”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學(xué)習(xí)新知識(shí)吧。
問題
我們都知道,在Vue組件中,data部分的數(shù)據(jù)與視圖之間是可以同步更新的,假如我們更新了data中的數(shù)據(jù),那么視圖上的數(shù)據(jù)就會(huì)被同步更新,這就是Vue所謂的數(shù)據(jù)驅(qū)動(dòng)視圖思想。
當(dāng)我們使用Vuex時(shí),我們也可以通過在視圖上通過 $store.state.[DataKey] 來獲取Vuex中 state 的數(shù)據(jù),且當(dāng) state 中的數(shù)據(jù)發(fā)生變化時(shí),視圖上的數(shù)據(jù)也是可以同步更新的,這似乎看起來很順利。
但是當(dāng)我們想要通過將 state 中的數(shù)據(jù)綁定到Vue組件的 data 上,然后再在視圖上去調(diào)用 data ,如下:
<template> <div>{{userInfo}}</div> </template> <script> export default { data() { return { userInfo: this.$store.state.userInfo; }; } }; </script>
那么我們就會(huì)發(fā)現(xiàn),當(dāng)我們?nèi)ジ淖?state 中的 userInfo 時(shí),視圖是不會(huì)更新的,相對(duì)應(yīng)的 data 中的 userInfo 也不會(huì)被更改,因?yàn)檫@種調(diào)用方式是非常規(guī)的。
當(dāng)Vue在組件加載完畢前,會(huì)將 data 中的所有數(shù)據(jù)初始化完畢,之后便只會(huì)被動(dòng)改變數(shù)據(jù)。然而等組件數(shù)據(jù)初始化完畢之后,即使 state 中的數(shù)據(jù)發(fā)生了改變, data 中的數(shù)據(jù)與其并非存在綁定關(guān)系,data 僅僅在數(shù)據(jù)初始化階段去調(diào)用了 state 中的數(shù)據(jù),所以 data 中的數(shù)據(jù)并不會(huì)根據(jù) state 中的數(shù)據(jù)發(fā)生改變而改變。
所以如果想在視圖上實(shí)現(xiàn)與 state 中的數(shù)據(jù)保持同步更新的話,只能采用以下方式:
<template> <div>{{$store.state.userInfo}}</div> </template>
解決
那么如果我們必須想要在 data 上綁定 state 中的數(shù)據(jù),讓 state 去驅(qū)動(dòng) data 發(fā)生改變,那我們?cè)撊绾巫瞿兀?/p>
我們可以嘗試以下兩中方法:
1. 使用computed屬性去獲取state中的數(shù)據(jù)
這種方式其實(shí)并非是去調(diào)用了 data 中的數(shù)據(jù),而是為組件添加了一個(gè)計(jì)算 computed 屬性。computed 通常用于復(fù)雜數(shù)據(jù)的計(jì)算,它實(shí)際上是一個(gè)函數(shù),在函數(shù)內(nèi)部進(jìn)行預(yù)算后,返回一個(gè)運(yùn)算結(jié)果,同時(shí)它有一個(gè)重要的特性:當(dāng)在它內(nèi)部需要進(jìn)行預(yù)算的數(shù)據(jù)發(fā)生改變后,它重新進(jìn)行數(shù)據(jù)運(yùn)算并返回結(jié)果。 所以,我們可以用 computed 去返回 state 中的數(shù)據(jù),當(dāng) state 中的數(shù)據(jù)發(fā)生改變后,computed 會(huì)感知到,并重新獲取 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 中的某一項(xiàng)數(shù)據(jù)添加一個(gè)監(jiān)聽,當(dāng)數(shù)據(jù)發(fā)生改變的時(shí)候觸發(fā)監(jiān)聽事件,在監(jiān)聽事件內(nèi)部中去更改 data 中對(duì)應(yīng)的數(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ī)范在這里應(yīng)該去使用getters來獲取數(shù)據(jù) } } }; </script>
讀到這里,這篇“怎么實(shí)現(xiàn)vuex與組件data之間的數(shù)據(jù)更新”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識(shí)點(diǎn)還需要大家自己動(dòng)手實(shí)踐使用過才能領(lǐng)會(huì),如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。