gpt4 book ai didi

contentful - 如何使用 javascript sdk 在内容丰富的 getEntry 调用中获取包含的对象?

转载 作者:行者123 更新时间:2023-12-03 23:51:28 26 4
gpt4 key购买 nike

我发现我可以使用 node.js javascript api 在 getEntries 方法中通过 include:2 传递查询对象。我如何使用返回单个对象的 getEntry 调用来做到这一点。

// how do I get the nested objects by passing the parameter include:1
client.getEntry('<entry_id>', {<what goes here?>})
.then(function (entry) {
// logs the entry metadata

})

最佳答案

getEntry 返回 1 且仅返回 1 个条目。如果您想包含 1 个父条目(也称为多个条目)的链接条目,则必须使用 getEntries 方法并指定父条目的 sys.id您要检索的条目。像这样:

client.getEntries({'sys.id': '<entry_id>'})
.then(entries => {
...
})

关于contentful - 如何使用 javascript sdk 在内容丰富的 getEntry 调用中获取包含的对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44425494/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com