2

我想做一个GraphQL查询,从我的 Vue 应用程序的数据字段中获取一些数据。但是,当我设置变量挂钩并尝试使用 this.object 引用我需要的对象时,我得到一个无法读取未定义的“xxx”。

apollo: {
    question: {
      query: gql `
      query question($id: Int!) {
        question(id: $id){
          ...
        }
      }
`, variables: { id: this.presentQuestionId}
    }
  },

Uncaught TypeError: Cannot read property 'presentQuestionId' of undefined 是不断出现的错误消息。

4

1 回答 1

2

variables选项应该是一个返回对象的函数,例如:

variables(){
    return{
     id: this.presentQuestionId
   }
}
于 2019-08-26T15:13:55.790 回答