我们是否可以通过提供多个 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 的所有条目。
任何帮助表示赞赏。
谢谢