如何使Nuxt-auth和Nuxt-i18n成为朋友

时间:2018-09-17 09:18:57

标签: javascript authentication vue.js internationalization nuxt

我想同时使用nuxt @ auth模块和nuxt-i18n。当我希望登录页面具有不同的路由时,会出现问题。例如:

pages: {
 login: {
  en: '/authorization',
  fr: '/autorisation'
 }
}

路由运行良好,但是当我尝试在所有页面都受限制的情况下使用nuxt @ auth时,默认重定向将请求/ login页面。在nuxt.config.js文件中,我可以重写重定向路由,但只能设置一个重定向。

auth: {
 redirect: {
  login: '/fr/autorisation'
 }
}

如何显示给身份验证模块以询问所选语言的路线?预先感谢!

3 个答案:

答案 0 :(得分:1)

似乎https://github.com/nuxt-community/auth-module/pull/185问题已解决,但是在当前版本中我无法访问onRedirect方法。

我做了一个解决方法。我添加了auth-lang-redirect.js插件,该插件将覆盖redirect文件中定义的nuxt.config.js选项。

export default ({ app }) => {
  var redirect = app.$auth.$storage.options.redirect
  for (var key in redirect) {
    redirect[key] = '/' + app.i18n.locale + redirect[key]
  }
  app.$auth.$storage.options.redirect = redirect
}

请注意,我不使用nuxt-i18n模块,但您应该明白这一点。 您必须像这样在nuxt.config.js中注册此插件:

auth: {
    strategies: { ... },
    redirect: {
      login: '/login',
      logout: '/',
      callback: '/login',
      home: '/user/profile'
    },
    plugins: ['@/plugins/auth-lang-redirect.js']
  },

答案 1 :(得分:1)

希望对某人有帮助=)

export default ({ app, $auth }) => {
 $auth.onRedirect((to, from) => {
   return app.localePath(to)
  })
}

答案 2 :(得分:1)

export default function({ app, $auth }) {
  const redirect = { ...$auth.$storage.options.redirect };

  const localizeRedirects = () => {
    for (const key in redirect) {
      $auth.$storage.options.redirect[key] = app.localePath(redirect[key]);
    }
  };

  localizeRedirects();

  app.i18n.onLanguageSwitched = () => {
    localizeRedirects();
  };
}