3

mounted如何在 Vue.js 组件中触发 Apollo GraphQL 查询。

这是我的代码的样子:

<template>
</template>

<script>
import gql from 'graphql-tag';

const myQuery = gql`
  query someQuery {
    books{
      id
   }
}`

export default {
  data: () => ({
    books: []
  }),
  apollo: {
    books: {
      query: myQuery,
    },
  },
  mounted () {
  // run the appollo query here as well ?
  }
};
</script>

查询在组件的第一次加载时运行良好,但我怎样才能让它与各种事件一起运行?

4

1 回答 1

6
this.$apollo.queries.books.refetch();

如果您有变量并且需要在每次调用时更新它们,请将它们作为方法 refetch 的参数传递:

this.$apollo.queries.books.refetch(variables);
于 2017-10-28T15:28:37.517 回答