5

我正在使用 shopify-buy SDK 尝试在前端使用 JavaScript 从我的 Shopify 商店中获取文章,遵循此处的“扩展 SDK”说明:https ://shopify.github.io/js-buy -sdk/#expanding-the-sdk

使用下面的代码,我可以检索我的文章和一些我需要的字段。

// Build a custom query using the unoptimized version of the SDK
const articlesQuery = client.graphQLClient.query((root) => {
  root.addConnection('articles', {args: {first: 10}}, (article) => {
    article.add('title')
    article.add('handle')
    article.add('url')
    article.add('contentHtml')
  })
})

// Call the send method with the custom query
client.graphQLClient.send(articlesQuery).then(({model, data}) => {
  console.log('articles data')
  console.log(data)
})

但是,我真的需要为每篇文章提取特色图片,不幸的是,当我article.add('image')在我的文章查询中添加该行时,生成的文章数据日志null。我尝试构建一个自定义 productsQuery,并且有一个类似的问题 - 我可以检索一些产品字段,但是当我尝试添加该行时product.add('images'),我只是null从店面 API 中返回。

有没有人有构建自定义/扩展查询和成功检索图像的经验?

4

2 回答 2

1

尝试以下操作:

// Fetch all products in your shop
client.graphQLClient.fetchAll().then((acticles) => {
  console.log(acticles);
});

然后在控制台中检查您的文章有哪些可用的属性名称。如果 SDK 允许您获取任何图像数据,那么肯定应该有imageSrc|| 之类的东西。imageUrl || img……

于 2019-02-02T13:14:17.470 回答
1

感谢 js-buy-sdk repo 的 github 问题部分的 Rebecca Friedman 提供了这个可行的解决方案:

const articlesQuery = client.graphQLClient.query((root) => {
  root.addConnection('articles', {args: {first: 10}}, (article) => {
    article.add('title')
    article.add('handle')
    article.add('url')
    article.add('contentHtml')
    article.addField('image', {}, (image) => {
      image.add('id')
      image.add('originalSrc')
    })
  })
})

// Call the send method with the custom query
client.graphQLClient.send(articlesQuery).then(({model, data}) => {
  console.log('articles data')
  console.log(data) // works!
})

因为图像字段是它自己的对象,所以你必须添加一个回调函数来指定你需要的字段。

于 2019-02-14T01:39:33.737 回答