我正在开发一个使用 API 登录的移动应用程序,但每当我尝试登录时,都会出现以下错误:
undefined is not an object (evaluating 'this.store.dispatch')
导致错误的代码如下所示:
try {
this.store.dispatch('user/UPDATE_ACCESS_TOKEN', {
token: response.access_token,
ttl: response.access_token_expires_in
})
}
catch (e) {
console.log(e);
}
有谁知道可能出了什么问题?