国产成人精品久久免费动漫-国产成人精品天堂-国产成人精品区在线观看-国产成人精品日本-a级毛片无码免费真人-a级毛片毛片免费观看久潮喷

您的位置:首頁(yè)技術(shù)文章
文章詳情頁(yè)

解決Vue 給mapState中定義的屬性賦值報(bào)錯(cuò)的問(wèn)題

瀏覽:4日期:2023-01-11 17:04:57

1. 實(shí)踐環(huán)境

Vue 2.9.6

2. 問(wèn)題描述

<script>import { mapState } from ’vuex’;export default { name: 'displayCount', computed: { ...mapState({ ...略 count: state => state.a.count }) }, methods: { increaseCount () { this.count = this.count + 1 } }};</script><style></style>

如上,我們希望在執(zhí)行increaseCount函數(shù)時(shí),給mapstate函數(shù)中映射定義的this.count賦值,給該值增加1,結(jié)果,提示

[Vue warn]: Computed property 'count' was assigned to but it has no setter.

3. 解決方案1

如下,把屬性“移出mapState”,然后為屬性新增get,set方法,分別用于獲取值和改變值(按store狀態(tài)管理規(guī)定的方式)

<script>import { mapState } from ’vuex’;export default { name: 'displayCount', computed: { ...mapState({...略 }), count: { get() { return this.$store.state.a.count; }, set(val) { this.$store.commit('increaseCount', val); } } }, methods: { increaseCount () { this.count = this.count + 1 } }};</script>

注意:this.$store.commit('increaseCount', val);中的increaseCount方法名稱,并不是methods中定義的方法名稱,而是store中定義的方法

4. 解決方案2

通過(guò)對(duì)比當(dāng)前屬性值和store狀態(tài)值,然后根據(jù)比較結(jié)果,決定是否根據(jù)store狀態(tài)管理規(guī)則更新?tīng)顟B(tài)值。

<script>import { mapState } from ’vuex’;export default { name: 'displayCount', computed: { ...mapState({ count: state => state.a.count }) }, methods: { increaseCount () { if (this.count == this.$store.state.a.count) { this.$store.commit('increaseCount', this.count+1); } } }};</script>

總結(jié)

到此這篇關(guān)于解決Vue 給mapState中定義的屬性賦值報(bào)錯(cuò)的問(wèn)題的文章就介紹到這了,更多相關(guān)vue給mapState屬性賦值內(nèi)容請(qǐng)搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!

標(biāo)簽: Vue
相關(guān)文章:
主站蜘蛛池模板: 手机在线看片福利 | 91精品国产福利尤物免费 | 日本韩国三级在线 | 久草网视频在线观看 | 午夜在线观看视频免费 成人 | 99re9精品视频在线 | 欧美人成人亚洲专区中文字幕 | 最新亚洲精品 | 最新国产精品视频免费看 | 亚洲国产激情 | 中文字幕亚洲 综合久久 | 草草影院ccyy国产日本欧美 | 国产成人黄色 | 久草在现 | 欧洲97色综合成人网 | 国内久久 | 午夜黄色福利视频 | 黄色a站 | 日本韩国一级毛片中文字幕 | 在线观看一级毛片免费 | 亚洲欧美日韩综合一区久久 | 国产成人综合一区精品 | 亚洲男人的天堂网 | 高清国产美女一级毛片 | 久久久久久久网站 | 欧美白人和黑人xxxx猛交视频 | 久久99精品视频 | 国产综合亚洲专区在线 | 亚洲精品久久久久久久网站 | 日韩国产免费 | 久久精品九九 | a毛片网站| 中文字幕精品一区二区精品 | 韩国巨胸女三级视频网 | 久久精品一区二区三区日韩 | 撸天堂| 成年人在线观看视频网站 | 亚洲精品中文字幕一区 | 欧美一级一毛片 | 国产精品1区2区3区在线播放 | 成人黄色免费网站 |