我使用nuxt / auth模块在nuxt Web应用程序上进行身份验证。我还使用模块化Vuex存储来处理不同的状态。登录后,一切正常,我可以正常浏览该应用程序。但是,当我尝试重新加载页面或直接通过URL访问它时,无法访问该用户,因此,整个Web应用程序变得无法使用。我尝试使用this.context.rootState.auth.user
访问用户对象,该对象在页面重新加载或直接访问后为null。奇怪的是,这只发生在生产中。
我已经尝试添加一个if-guard,但是很遗憾,getter并没有反应。可能是因为它是一个嵌套对象。这是我目前的吸气剂:
get someGetter() {
if (!this.context.rootState.auth.user) {
return []
}
const userId = this.context.rootState.auth.user.id as string
const arr = []
for (const item of this.items) {
// Using userId to add something to arr
}
return arr
}
是否有一种方法可以强制nuxt在初始化vuex模块之前完成身份验证,或使此getter具有反应性,以便在可访问用户对象时再次触发它?
这是我的auth-config在nuxt.config.ts中的样子:
auth: {
strategies: {
local: {
_scheme: '@/auth/local-scheme',
endpoints: {
login: {
url: '/api/authenticate',
method: 'post',
propertyName: false
},
logout: { url: '/api/logout', method: 'post' },
user: { url: '/api/users/profile', propertyName: false }
}
},
// This dummy setting is required so we can extend the default local scheme
dummy: {
_scheme: 'local'
}
},
redirect: {
logout: '/login'
}
}
编辑
我通过遵循Raihan Kabir´s answer解决了这个问题。在身份验证插件中使用vuex-persistedstate,每次服务器呈现页面时都会触发该插件。该插件将userId保存在cookie中,因此,如果auth模块尚未准备好,则商店可以将其用作备用。
答案 0 :(得分:4)
问题是,vuex
会在重新加载/刷新时清除数据,以确保凭据安全。这就是vuex
。如果要长时间存储数据而在重新加载后不被中断,则应使用 localstorage 。但是不建议使用 localstorage 存储凭据。
如果您只需要user_id
来保留vuex
,请改用 Cookie 。并在商店的index.js
文件中尝试类似的操作-
export const actions = {
// This one runs on the beginning of reload/refresh
nuxtServerInit ({ commit }, { req }) {
if (req.headers.cookie) {
const parsed = cookieparser.parse(req.headers.cookie)
try {
// get user id that you would set on auth as Cookie
user_id = parsed.uid
} catch (err) {
// error here...
}
}
// perform login and store info on vuex store
commit('authUserOnReload', user_id)
},
}
// Define Mutations
export const mutations = {
authUserOnReload (state, user_id) {
// perform login here and store user
}
}