通过ID和语言环境获取内容丰富的条目

时间:2019-02-25 10:39:18

标签: javascript contentful

Contentful npm软件包提供对API中所有功能的访问。就我而言,我知道我想要的条目的ID,但需要检索非默认语言环境的数据,而且我看不到任何传递语言环境选项的方法。我的查询如下:

const { createClient } = require('contentful');

const contentfulClient = createClient({
  accessToken: 'xxxxxxxx',
  space: 'xxxxxxx',
});

const entry = contentfulClient
  .getEntry('xxxxxx')
  .catch(console.error);

我知道我可以做以下事情:

const data = await contentfulClient
  .getEntries({
    content_type: 'xxxxxx'
    locale: 'cy',
    'sys.id': xxxxx,
  })
  .catch(console.error);

const [entry] = data.items;

但这需要内容类型并返回一个条目数组,当我知道我想要的确切条目时,这似乎很不直观。我想念什么吗?期望它做似乎是合乎逻辑的事情。

1 个答案:

答案 0 :(得分:2)

API documentation上没有这样说,但是您可以通过API绝对使用locale=参数。

▶ curl -H "Authorization: Bearer $CONTENTFUL_ACCESS_TOKEN" https://cdn.contentful.com/spaces/$CONTENTFUL_SPACE_ID/entries/6wU8cSKG9UOE0sIy8Sk20G
{
  "sys": {
    "space": {
      "sys": {
        "type": "Link",
        "linkType": "Space",
        "id": "xxxx"
      }
    },
    "id": "6wU8cSKG9UOE0sIy8Sk20G",
    "type": "Entry",
    "createdAt": "2018-09-06T22:01:55.103Z",
    "updatedAt": "2018-10-08T19:26:59.382Z",
    "environment": {
      "sys": {
        "id": "master",
        "type": "Link",
        "linkType": "Environment"
      }
    },
    "revision": 14,
    "contentType": {
      "sys": {
        "type": "Link",
        "linkType": "ContentType",
        "id": "section"
      }
    },
    "locale": "en-US"
  },
  "fields": {
    "internalTitle": "test test test",
    ...

▶ curl -H "Authorization: Bearer $CONTENTFUL_ACCESS_TOKEN" https://cdn.contentful.com/spaces/$CONTENTFUL_SPACE_ID/entries/6wU8cSKG9UOE0sIy8Sk20G\?locale\=\*
{
  "sys": {
    "space": {
      "sys": {
        "type": "Link",
        "linkType": "Space",
        "id": "xxxx"
      }
    },
    "id": "6wU8cSKG9UOE0sIy8Sk20G",
    "type": "Entry",
    "createdAt": "2018-09-06T22:01:55.103Z",
    "updatedAt": "2018-10-08T19:26:59.382Z",
    "environment": {
      "sys": {
        "id": "master",
        "type": "Link",
        "linkType": "Environment"
      }
    },
    "revision": 14,
    "contentType": {
      "sys": {
        "type": "Link",
        "linkType": "ContentType",
        "id": "section"
      }
    }
  },
  "fields": {
    "internalTitle": {
      "en-US": "test test test"
    },
    ...

documentation for the contentful JS client说:

  

参数:
  名称类型属性描述。   ID字符串
  查询对象可选。
    具有搜索参数的对象。在此方法中,它仅对locale有用。

因此您将像这样将语言环境添加为getEntry的第二个参数:

const entry = contentfulClient
  .getEntry('xxxxxx', { locale: 'en-US' })
相关问题