0

我们是否可以通过提供多个 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 的所有条目。

任何帮助表示赞赏。

谢谢

4

2 回答 2

2

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

于 2016-03-22T09:31:23.860 回答
1

这可以通过使用以下内容来实现。

sys.contentType.sys.id[in]=[content_type1],[content_type2],...

有关详细信息,请参阅https://www.contentfulcommunity.com/t/how-to-query-on-multiple-content-types/473

于 2021-07-20T17:01:32.283 回答