我试图找出如何在用户注销时保存用户会话。例如多个购物车,交易,甚至以前的搜索。我对整个后端语言都很陌生,我只是在寻求有关此事的指导。我已经尝试过google-foo的这个问题,但是没有找到任何关于我想要实现的目标的好文档。
任何人都可以帮助和/或指导我吗?
答案 0 :(得分:15)
尝试使用vue-session
登录区域中的示例:
export default {
name: 'login',
methods: {
login: function () {
this.$http.post('http://somehost/user/login', {
password: this.password,
email: this.email
}).then(function (response) {
if (response.status === 200 && 'token' in response.body) {
this.$session.start()
this.$session.set('jwt', response.body.token)
Vue.http.headers.common['Authorization'] = 'Bearer ' + response.body.token
this.$router.push('/panel/search')
}
}, function (err) {
console.log('err', err)
})
}
}
}
登录区域:
export default {
name: 'panel',
data () {
return { }
},
beforeCreate: function () {
if (!this.$session.exists()) {
this.$router.push('/')
}
},
methods: {
logout: function () {
this.$session.destroy()
this.$router.push('/')
}
}
}
答案 1 :(得分:4)