11

我正在使用vue-apolloand构建一个 GraphQL 查询graphql-tag

如果我硬编码我想要的 ID,它可以工作,但我想将当前路由 ID 作为变量传递给 Vue Apollo。

是否有效(硬编码 ID):

  apollo: {
    Property: {
      query: PropertyQuery,
      loadingKey: 'loading',
      variables: {
        id: 'my-long-id-example'
      }
    }
  }

但是,我无法做到这一点:

不起作用(试图访问 this.$route 的 ID):

  apollo: {
    Property: {
      query: PropertyQuery,
      loadingKey: 'loading',
      variables: {
        id: this.$route.params.id
      }
    }
  }

我得到错误:

未捕获的类型错误:无法读取未定义的属性“参数”

有没有办法做到这一点?

编辑:完整的脚本块,以便更容易看到发生了什么:

<script>
import gql from 'graphql-tag'

const PropertyQuery = gql`
  query Property($id: ID!) {
    Property(id: $id) {
      id
      slug
      title
      description
      price
      area
      available
      image
      createdAt
      user {
        id
        firstName
        lastName
      }
    }
  }
`

export default {
  name: 'Property',
  data () {
    return {
      title: 'Property',
      property: {}
    }
  },
  apollo: {
    Property: {
      query: PropertyQuery,
      loadingKey: 'loading',
      variables: {
        id: this.$route.params.id // Error here!
      }
    }
  }
}
</script>
4

3 回答 3

12

您不能像这样访问“this”对象:

variables: {
  id: this.$route.params.id // Error here! 
}

但是你可以这样:

variables () {   
    return {
         id: this.$route.params.id // Works here!  
    }
}
于 2019-09-10T19:21:23.327 回答
9

阅读vue-apollo的文档this.propertyName(请参阅反应性参数部分),您可以通过使用. 所以只需将路由参数初始化为数据属性,然后像这样在你的阿波罗对象中使用它

export default {
  name: 'Property',
  data () {
    return {
      title: 'Property',
      property: {},
      routeParam: this.$route.params.id
    }
  },
  apollo: {
    Property: {
      query: PropertyQuery,
      loadingKey: 'loading',
         // Reactive parameters
      variables() {
        return{
            id: this.routeParam
        }
      }
    }
  }
} 
于 2017-07-14T10:48:24.350 回答
4

虽然接受的答案对于发布者的示例是正确的,但如果您使用简单的查询,它会比必要的更复杂。

在这种情况下,this不是组件实例,因此您无法访问this.$route

apollo: {
  Property: gql`{object(id: ${this.$route.params.id}){prop1, prop2}}`
}

但是,您可以简单地用函数替换它,它会按您预期的那样工作。

apollo: {
  Property () {
    return gql`{object(id: ${this.$route.params.id}){prop1, prop2}}`
  }
}

无需设置额外的道具。

于 2018-05-07T11:50:02.503 回答