繁体   English   中英

在渲染中间件之前如何在nuxt中渲染vuex模块

[英]How do I render the vuex module in nuxt before rendering the middleware

我的问题是,当页面重新加载时,中间件首先呈现,然后是 vuex; 因此,当我想更改 vuex 中的值时,基于用户是否经过身份验证,中间件返回 vuex 的初始值。 这意味着,如果用户通过身份验证,它首先显示 false,在渲染 vuex 之后,它再显示 true。 但是到那时,中间件已经完成加载。 这会导致在页面刷新时将用户重定向到登录页面。 我的问题是,它们是我可以在中间件之前先加载 vuex 的一种方式吗?

这是中间件代码;

export default async function ({ store, redirect }) {
  // If the user is not authenticated
  const authenticated = await store.state.signup.authenticated
  if (!authenticated) {
    console.log(!authenticated)
    return redirect('/login')
  } else {
    console.log('I am logged in')
  }
}

这是vuex代码;

import axios from 'axios'

export const state = () => ({
  authenticated: false,
  credential: null,
})

export const mutations = {
  ADD_USER(state, data) {
    state.credential = data
    state.authenticated = true
  },
  LOGOUT(state) {
    state.credential = null
    state.authenticated = false
  },
}

export const actions = {
  async addUser({ commit }, data) {
    try {
      const response = await axios.post(
        'http://localhost:8000/api/rest-auth/registration/',
        data
      )
      commit('ADD_USER', response.data)
      this.$router.push('/')
    } catch (error) {
      return console.log(error)
    }
  },

  async addUserLogin({ commit }, data) {
    try {
      const response = await axios.post(
        'http://localhost:8000/api/rest-auth/login/',
        data
      )
      commit('ADD_USER', response.data)
      this.$router.push('/')
    } catch (error) {
      return console.log(error)
    }
  },
}

export const getters = {
  loggedIn(state) {
    return !!state.credential
  },
}

这是 login.vue 代码

<template>
  <client-only>
    <div class="container">
      <v-card max-width="500" class="margin-auto">
        <v-card-title>Sign up</v-card-title>
        <v-card-text>
          <v-form @submit.prevent="submitUser">
            <v-text-field
              v-model="data.username"
              label="Username"
              hide-details="auto"
              append-icon="account_circle"
            ></v-text-field>
            <v-text-field
              v-model="data.password"
              label="Password"
              hide-details="auto"
              type="password"
              append-icon="visibility_off"
            ></v-text-field>
            <v-card-actions>
              <v-btn color="success" type="submit" class="mt-4" dark>
                Signup
              </v-btn>
            </v-card-actions>
          </v-form>
          <p>
            Don't have an account? <nuxt-link to="/signup">Register</nuxt-link>
          </p>
        </v-card-text>
      </v-card>
    </div>
  </client-only>
</template>

<script>
export default {
  data() {
    return {
      data: {
        username: '',
        password: '',
      },
    }
  },

  methods: {
    submitUser() {
      this.$store.dispatch('signup/addUserLogin', this.data)
    },
  },
}
</script>

<style lang="scss" scoped>
.margin-auto {
  margin: 2rem auto;
}
</style>

是的,有一种方法可以做到这一点,事实上。 该商店已经在您的中间件中可用,但在您的情况下。 商店是空的! 您需要先获取数据并填充存储。

我建议你阅读关于 nuxt 中间件https://nuxtjs.org/guide/routing#middleware的文档。 它指出

中间件可以是异步的。 为此,只需返回 Promise 或使用第二个回调参数。

因此,在您的情况下,您需要在中间件中返回 Promise:此 promise 将是 axios 请求。 这是一个提议:

export default function ({ store, redirect }) {
    return new Promise(resolve => store.dispatch('signup/addUserLogin', data).then((user) => {
        if (!user) {
            // User not found
            redirect('/login');
        } else {
            // Do your stuff with the user freshly got, like commit in the store
            resolve();
        }
    })
}

在您的情况下,您应该修改操作addUserLogin :您应该只在此 function 中获得 axios 查询,而不是重定向。 此外,您将遇到操作中使用的数据、密码和用户的问题。 刷新时,您会丢失此数据。 您应该实现一个令牌系统,如 JWT,并将它们存储在本地存储或 cookies 中(如本例中的https://nuxtjjs.org/external )。

希望对你有帮助!

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM