Lotus Notes Xpage,如何获取max api文件

时间:2016-10-25 09:40:09

标签: xpages lotus-domino lotus

我有一个db test.nsf。在db中有一个表单fa_user并查看v_User。

我添加了fa_user格式的文档(例如:20个文档)。

我使用" test.nsf / api / data / collections / name / v_User"从fa_User获取api文档,但它只获得10个文档。

如何获得MAX?

1 个答案:

答案 0 :(得分:1)

使用this count表示条目数,start表示开始参赛作品:

test.nsf/api/data/collections/name/v_User?start=0&count=20

您可以使用HTTP输出参数Content-Range获取总数视图条目(例如,值"项目0-19 / 88"表示响应包括条目0通过总共88个条目中的19个)或响应字段@siblings(如果它是平面视图)。

读取块中的条目以获得更好的用户体验,或者如果您有超过1000个条目:

...start=0&count=200
...start=200&count=200
...start=400&count=200

斯蒂芬在评论中指出,最高。一次可以读取1000个条目。