django - this.$apollo 始终未定义

我正在尝试使用 apollo(+ vue、django)但由于某些原因它不会在组件中加载/使用,this.$apollo始终是 undefined

<script>
import { GET_ALL_USERS_QUERY } from '../js/graphql/queries/userQueries.js'
export default {
  name: 'GraphQLTest',
  data() {
    return {
      users: [],
      loading: true
    }
  },
  async mounted() {
    this.loading = true
    this.users = await this.$apollo.query({
      query: GET_ALL_USERS_QUERY
    })
    this.loading = false
  }
}
</script>


  [Vue warn]: Error in mounted hook (Promise/async): "TypeError: Cannot read property 'query' of undefined"

主要.js

import Vue from 'vue'
import { router } from './routes.js'
import store from './store.js'
import { createProvider } from './apollo.js'

import App from './App.vue'

Vue.config.productionTip = false


new Vue({
  router,
  store,
  provide: createProvider(),
  render: h => h(App),
}).$mount('#app')

Apollo .js

import Vue from 'vue'
import VueApollo from 'vue-apollo'
import { createApolloClient, restartWebsockets } from 'vue-cli-plugin-apollo/graphql-client'

// Install the vue plugin
Vue.use(VueApollo)

// Name of the localStorage item
const AUTH_TOKEN = 'jwt-token'

// Config
const defaultOptions = {
  httpEndpoint: '/graphql',
  wsEndpoint: null,
  tokenName: AUTH_TOKEN,
  persisting: false,
  websocketsOnly: false,
  ssr: false
}

// Call this in the Vue app file
export function createProvider (options = {}) {
  // Create apollo client
  const { apolloClient, wsClient } = createApolloClient({
    ...defaultOptions,
    ...options
  })
  apolloClient.wsClient = wsClient

  // Create vue apollo provider
  const apolloProvider = new VueApollo({
    defaultClient: apolloClient,
    defaultOptions: {
      $query: {
        loadingKey: 'loading',
        fetchPolicy: 'cache-and-network'
      }
    },
    errorHandler (error) {
      // eslint-disable-next-line no-console
      console.log('%cError', 'background: red; color: white; padding: 2px 4px; border-radius: 3px; font-weight: bold;', error.message)
    }
  })

  return apolloProvider
}

// Manually call this when user log in
export async function onLogin (apolloClient, token) {
  localStorage.setItem(AUTH_TOKEN, token)
  if (apolloClient.wsClient) restartWebsockets(apolloClient.wsClient)
  try {
    await apolloClient.resetStore()
  } catch (e) {
    // eslint-disable-next-line no-console
    console.log('%cError on cache reset (login)', 'color: orange;', e.message)
  }
}

// Manually call this when user log out
export async function onLogout (apolloClient) {
  localStorage.removeItem(AUTH_TOKEN)
  if (apolloClient.wsClient) restartWebsockets(apolloClient.wsClient)
  try {
    await apolloClient.resetStore()
  } catch (e) {
    // eslint-disable-next-line no-console
    console.log('%cError on cache reset (logout)', 'color: orange;', e.message)
  }
}

为什么 apollo 从未加载?配置中缺少什么?

[编辑:遵循教程时会发生同样的事情:]

import Vue from "vue"
import App from "./App.vue"
import { router } from './routes.js'
import ApolloClient from "apollo-boost"
import VueApollo from "vue-apollo"

const apolloProvider = new VueApollo({
  defaultClient: new ApolloClient({
    uri: "http://localhost:8000/graphql/"
  })
})


Vue.use(VueApollo)
new Vue({
  router,
  el: "#app",
  provide: apolloProvider.provide(),
  render: h => h(App)
})

最佳答案

如果您使用 vue-cli > 3 创建了 VUE 项目,这将导致 this.$apollo 等于未定义的问题。

https://stackoverflow.com/questions/59845235/

相关文章:

python - pytest:带参数的自定义标记

javascript - 如何使用 JavaScript 观察 an 元素的 scrollWidth

javascript - 如何从 HTML 中的颜色选择器中删除 "other..."选项?

google-chrome - 如何在 .Net framework 4.0.30319 中设置 H

google-chrome - 如何告诉谷歌浏览器尊重 Xfce 上的系统默认文件浏览器 (Thun

wpf - 如何将新的 WPF UserControl 添加到我的 .NetCore 3.1 应用程

google-cloud-platform - 如何部署使用google cloud build和S

javascript - 错误 : Objects are not valid as a React

visual-studio - 强制 Visual Studio 从光标处查找

json - Spring webflux Netty : How to expose proto