我目前正在学习Vue并正在学习Udemy课程。但是,我空的Vue项目在符号上比我的老师更严格。因此,当我尝试解决所有问题时,有时还会出现意外的令牌错误。
我真的不明白为什么我在.then上收到意外的令牌错误。 这可能是很简单的事情,我认为还没有错。
我检查了所有内容,看是否有结束标记,逗号和分号。
actions: {
signIn({ commit }, payload) {
Vue.http.post(`${FbAuth}/verifyPassword?key=${FbApiKey}`, {
...payload,
returnSecureToken: true,
}),
.then( response => response.json())
.then( authData => {
console.log(authData);
}),
},
},
它应该通过登录操作,并检查我的firebase数据库中所需的凭据。
答案 0 :(得分:2)
点号前面有一个逗号。
尝试以下遵循代码:
actions: {
signIn({ commit }, payload) {
Vue.http.post(`${FbAuth}/verifyPassword?key=${FbApiKey}`, {
...payload,
returnSecureToken: true,
})
.then( response => response.json())
.then( authData => {
console.log(authData);
}),
},
},