如何使用JavaScript SDK在一个内容的Getentry调用中获取对象



我看到我可以使用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 => {
  ...
})

相关内容

  • 没有找到相关文章

最新更新