0

我正在使用 nuxt js + @nuxjs/auth (4.9.1) 来构建一个项目。

问题是当我使用this.$auth.strategy.token.get()访问授权令牌Cannot read property 'get' of undefined时发生错误。

如何访问@nuxtjs/auth 中的授权令牌?

4

1 回答 1

0

我正在使用 nuxt.conf.js 中定义的自定义策略,如下所示:

  auth: {
    strategies: {
      customStrategy: {
        scheme: '~/schemes/customScheme',
        ....

我可以使用以下路径获取令牌:

  console.log(this.$auth.$storage._state['_token.customStrategy'])
于 2021-08-15T19:43:17.850 回答