我正在使用Vue-Native构建具有多个屏幕的简单应用程序(使用Vue本机路由器)。而且我遇到的情况是,我连接到屏幕A中的WebSocket来侦听消息,并且我需要这些更新才能在屏幕A和屏幕B中可用。
因此,在对全局变量和原型属性失去运气之后,我遇到了Vuex,它似乎完全可以满足我的需要。
实际上,它可以很好地更新屏幕上的属性,但似乎并没有反应并更新屏幕。
store.js:
import Vue from "vue-native-core";
import Vuex from "vuex"
Vue.use(Vuex);
export default new Vuex.Store({
state: {
imageUri: ["", "", "", ""]
},
mutations: {
updateImage (state, data) {
state.imageUri[data.index] = data.url;
}
}
});
ScreenA.vue在脚本标签中:
import store from "./store.js"
export default {
[...]
methods: {
[...]
handleMessage: function(message){
var data = message.data.split("#", 2);
var value = data[1];
console.log("New msg");
if(data[0] == "init"){
this.connectionMs = Date.now()-value;
this.connectionStatus = 2;
}else if(data[0] == "img"){
var current = this.cImg;
this.cImg = (this.cImg+1)%4;
var dataUrl = "data:image/jpeg;base64,"+value.substring(2, value.length-1);
store.commit('updateImage', {index: current, url: dataUrl}); //<- Relevant line
}
},
[...]
}
}
ScreenB.vue:
<template>
<view :style="{marginTop: 40}">
<image resizeMode="contain" :style="{ width: '100%', height: 200 }" :source="{uri: imageUri[0]}"/>
<image resizeMode="contain" :style="{ width: '100%', height: 200 , marginTop: -200}" :source="{uri: imageUri[1]}"/>
<image resizeMode="contain" :style="{ width: '100%', height: 200 , marginTop: -200}" :source="{uri: imageUri[2]}"/>
<image resizeMode="contain" :style="{ width: '100%', height: 200 , marginTop: -200}" :source="{uri: imageUri[3]}"/>
<touchable-opacity :on-press="btnPress">
<text>Press me! {{imageUri[0]}}</text>
</touchable-opacity>
</view>
</template>
<script>
import store from "./store.js"
export default {
props: {
navigation: {
type: Object
}
},
computed:{
imageUri: function(){
return store.state.imageUri;
}
},
methods: {
btnPress: function(){
console.log("ImgUrl0 -> "+this.imageUri[0]);
},
},
}
</script>
商店中的vuex状态更改后,计算出的属性将正确更新(console.log显示新值),但屏幕(文本和图像元素)上呈现的数据仍与旧数据保持在一起。
有什么办法可以解决这个问题?也许是一种完全不同的方法来跨屏幕同步我的动态数据?
答案 0 :(得分:1)
您的突变只会更新state.imageUri[data.index]
,而不会更改state.imageUri
的引用。这意味着state.imageUri
仍指向旧参考,Vue无法检测到此更新。它是Vue's gotchas
一种解决方案是使用JSON.parse(JSON.stringify())
制作state.imageUri
数组的深层副本
export default new Vuex.Store({
state: {
imageUri: ["", "", "", ""]
},
mutations: {
updateImage (state, data) {
state.imageUri[data.index] = data.url;
state.imageUri = JSON.parse(JSON.stringify(state.imageUri))
}
}
});