我们能否通过提供多个content_types获得所有条目:

我有以下代码,只能通过一种content_type获取所有条目:

cf_space.getEntries({content_type: "contentTypeId"}).then(function(contentTypes){

});


但是我们可以通过提供逗号分隔的entryId来获得多个条目吗?

var entryIds = "id1,id2";
cf_space.getEntries({'sys.id[in]': entryIds}).then(function(entries) {
});


我需要获取每个content_type的所有条目。

任何帮助表示赞赏。

谢谢

最佳答案

不,这是不可能的。您将必须执行两个单独的请求。

关于javascript - 多个content_types的内容丰富的getEntries,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36149890/

10-11 09:11