1

我正在尝试从 Shopify 商店获取第二语言的产品。

Storefront API 声明 HTTP 请求标头必须包含 Accept-Language: de,在我的情况下(在 React 中),设置应如下所示: https ://shopify.dev/tutorials/manage-app-translations-with- admin-api#storefront-api-translation-header

const clientWithTranslatedContent = Client.buildClient({
  domain: 'your-shop-name.myshopify.com',
  storefrontAccessToken: 'your-storefront-access-token',
  language: 'de' // Accept-Language
});

你可以在这里找到它的工作原理: https ://github.com/Shopify/js-buy-sdk/blob/update-language-setting/src/client.js

我正在使用 Shopify Webhook API 版本 2020-07(最新)。在这里gatsbyjs/gatsby#24173(评论)我发现在版本 2020-04 Accept-Language 标头中支持翻译的信息,但在我的情况下不起作用。

在构建应用程序时,我总是收到带有默认翻译 (EN) 的商品。

4

1 回答 1

1

该问题是由在 gatsby-node.js 中生成页面的“gatsby-source-shopify”插件引起的。它不考虑 HTTP 请求标头中的 Accept-Language。为了解决这个问题,我的团队已经完成了这个插件。

这是一个链接: https ://github.com/alex-borodin-vtlabs/gatsby-source-shopify-translated

于 2020-10-02T13:23:33.833 回答