Nuxt:选择默认以外的客户端配置

问题描述 投票:0回答:2

我正在使用 Nuxt 和 Nuxt-Apollo 创建我的 Vue 应用程序。我的

nuxt.config.js
文件中有以下 apollo 配置:

apollo: {
    clientConfigs: {
      default: {
        httpEndpoint: 'http://localhost:8000/graphql/'
      },
      stage: {
        httpEndpoint: 'https://example-stage.com/graphql/'
      }
      prod: {
        httpEndpoint: 'https://example.com/graphql/'
      }
    }
  }

如何指向

stage
prod
配置。每次我运行应用程序时,它都会指向
default
配置。必须有一个地方我可以设置这个。

javascript vue.js nuxt.js apollo vue-apollo
2个回答
6
投票

假设您尝试访问多个客户端,而不仅仅是产品和开发的不同客户端,这可能会有所帮助,就像我在当前项目中使用的那样。

    apollo: {
      includeNodeModules: true, // optional, default: false (this includes graphql-tag for node_modules folder)
      authenticationType: 'Basic', // optional, default: 'Bearer'
      errorHandler: '~/apollo/customErrorHandler',
      clientConfigs: {
      default:
         {
           httpEndpoint:
             'https://me.something.com/api/graphql/query?token=******',
           httpLinkOptions: {
             credentials: 'same-origin'
           }
         },
        //  '~/apollo/clientConfig.js',
      otherClient: {
        httpEndpoint:
          'https://second-endpoint-gql.herokuapp.com/v1/graphql',
        httpLinkOptions: {
          credentials: 'same-origin'
        }
      }
    }
  },

现在您需要做的就是像平常一样进行查询,但区别在于 vue 组件。

/gql/allCars.gql

{
  allCars {
    id
    make
    model
    year
  }
}

默认调用将像平常一样进行:

<script>
import allcars from '~/gql/users'
export default {
  apollo: {
    allcars: {
      prefetch: true,
      query: allcars
    }
  },
  filters: {
    charIndex (i) {
      return String.fromCharCode(97 + i)
    }
  },
  head: {
    title: ....
  },
  data () {
    return {
      ...
    }
  }
}
</script>

调用辅助端点,您需要添加 $client:

<script>
import allcars from '~/gql/users'
export default {
  apollo: {
    $client: 'otherClient',
    allcars: {
      prefetch: true,
      query: allcars
    }
  },
  filters: {
    charIndex (i) {
      return String.fromCharCode(97 + i)
    }
  },
  head: {
    title: ....
  },
  data () {
    return {
      ...
    }
  }
}
</script>

apollo 调试器似乎只查询 apollo 配置中端点列表上的最后一个端点,在我的例子中是“otherClient”,这是毫无价值的。

参考我如何进行上述集成:Vue 多客户端


0
投票

如果您使用 Pinia 和 Nuxt 3,您可以使用 $apollo 选择所需的客户端:

假设“prod”客户端:

actions: {
  async someQuery (){
    const { $apollo } = useNuxtApp()

    const response = await $apollo.clients.prod.query({
        query: gql` YOUR_GQL_QUERRY  `,

        // you can add variables (OPTIONAL)
        variables: { YOUR_VARIABLES }
      })

     console.log(response.data)
  }
}

假设您已经设置了模块:'@nuxtjs/apollo'

© www.soinside.com 2019 - 2024. All rights reserved.