如何仅使用 Fauxton/Selector 查询(不是 CURL)从我的沙发数据库返回超过 25 条记录
How to get more than 25 records returned from my couch db using Fauxton/Selector query only (not CURL)
每当我尝试从我的 couch db GetAsync 方法(不是 Find Async)中获取记录时,我通常只会得到 25 条记录。
我正在使用 Angular 12,API.NET web api core 和 couch db。所以我正在编写我的代码是 C# 并寻找特定的选择器,以防我需要从沙发数据库中获取超过 25 条记录。
目前我的选择器看起来像这样没有其他查询附加到它因为我需要整个门数据而不仅仅是前 25 个。
var doorData = CouchPersistence.GetAsync(_doorConfigurations);
根据 CouchDB 文档:
Refer to the view endpoint documentation for a complete
description of the available query parameters and the format of the
returned data.
具体来说,limit
参数。默认 limit
为 25。
每当我尝试从我的 couch db GetAsync 方法(不是 Find Async)中获取记录时,我通常只会得到 25 条记录。
我正在使用 Angular 12,API.NET web api core 和 couch db。所以我正在编写我的代码是 C# 并寻找特定的选择器,以防我需要从沙发数据库中获取超过 25 条记录。
目前我的选择器看起来像这样没有其他查询附加到它因为我需要整个门数据而不仅仅是前 25 个。
var doorData = CouchPersistence.GetAsync(_doorConfigurations);
根据 CouchDB 文档:
Refer to the view endpoint documentation for a complete description of the available query parameters and the format of the returned data.
具体来说,limit
参数。默认 limit
为 25。