我们重启了我们的django应用程序似乎没有任何改变,但现在每次连接我们都会收到以下错误。
这是什么意思?我该如何解决呢?我整天都在尝试我能想到的一切。任何帮助将不胜感激。
//Store action, note Vue.http.post MUST return a thenable (Promise)
SIGNIN (context, user) {
context.commit('handleLoader')
return Vue.http.post(apiDomain + signInUrl, user, {headers: getHeaders})
.then(response => {
handleSettingToken(response)
return response
})
}
}
//Component
methods: {
handleLogin() {
return store.dispatch(SIGNIN, user)
.then(response => doNavigationHere(response)
}
}
答案 0 :(得分:0)
这一切都归结为redis数据库中格式错误的密钥。
您将无法在此位置提取数据或读取密钥,因此只需重写密钥即可。之后一切都很完美。