我看到我可以使用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
})
答案 0 :(得分:5)
getEntry
返回1且只有1个条目。如果要包含1个父条目(也称为多个条目)的链接条目,则必须使用getEntries
方法并指定要检索的父条目的sys.id
。像这样:
client.getEntries({'sys.id': '<entry_id>'})
.then(entries => {
...
})