【发布时间】:2021-06-25 18:34:17
【问题描述】:
我从我在 vuex 中使用的数据库中获取数据。我在 setup 方法中使用 getter 检索它,但我想在呈现页面之前使用其中的一些数据,最好是在 onMounted 方法中。我不知道如何使用 Compositions API 来做到这一点。这是我的代码:
setup() {
const store = useStore();
//store.dispatch(Actions.LOAD_COMMUNITY);
onMounted(() => {
store.dispatch(Actions.LOAD_COMMUNITY);
setCurrentPageTitle(this.community.communityName);
});
return {
community: computed(() => store.getters.currentCommunity),
};
},
当我这样做时,我得到一个“找不到名称'community'”错误,我无法通过使用 this.community 来修复它。
如果你们能帮我解决这个问题,我将不胜感激。
【问题讨论】:
标签: javascript vue.js frontend vuex vue-composition-api