使用 REST API 可以检索的行数 LoopbackJS/Oracle 是否有限制?
Is there a limit on how many rows LoopbackJS/Oracle can retrieve using the REST API?
我正在使用 LoopbackJS 和 Oracle 数据库。在 GET API 中,我能够检索最多 3000 个结果作为数组作为响应。有什么方法可以增加提取大小吗?
loopback中,server/datasources.json
文件有一个db
对象,其中maxRows
属性用于定义从数据库检索的最大限制(使用 oracledb npm)。默认值为 3000。
Refer here
我正在使用 LoopbackJS 和 Oracle 数据库。在 GET API 中,我能够检索最多 3000 个结果作为数组作为响应。有什么方法可以增加提取大小吗?
loopback中,server/datasources.json
文件有一个db
对象,其中maxRows
属性用于定义从数据库检索的最大限制(使用 oracledb npm)。默认值为 3000。
Refer here