A组件:
存储:localStorage.setItem('articles', JSON.stringify(articles))
B组件:
computed: {
...mapState([
"articles"
])
},
created(){
var currentId = parseInt(this.$route.query.id);
this.currentArticle = this.articles.filter((item)=>{
return item.id === currentId
});
this.isCollected = this.currentArticle[0].isCollected;
this.collectNum = this.currentArticle[0].collectNum;
console.log(this.currentArticle)
},
vuex:
state.js: articles:localStorage["articles"]?JSON.parse(localStorage["articles"]): []
进入A组件后,调用接口,请求回数据后,存到localStorage中,点击路由跳转到B组件,为什么在created()中 this.articles 为 [],页面上没有数据,当我进入B组件后再次刷新页面就有数据了,这里面的computed()和 created()是不是有执行顺序的问题?应该怎么解决这个问题呢?
created
钩子触发的时候,vuex
的$store
是已经绑定到了vue
实例上了的(准确的说是在$store是在beforeCreate
钩子触发的时候被绑定到vue实例上)。https://github.com/vuejs/vuex...
我觉得问题的可能有两种:
localStorage
,并没有存到vuex
中。因为
vuex
的state
只会初始化一次仅仅
articles:localStorage["articles"]?JSON.parse(localStorage["articles"]): []
是不够的,请求返回之后还应该把state中的article重新赋值。vuex
中的数据自然也就没有更新了。