我可以使用分页或限制+跳过,有一个返回"总页"或"总计数"在帆js?
我想你的意思是当你使用风帆蓝图api方法?不幸的是,在当前的sails版本(v0.11.3)中,您不能。
您必须发送另一个计数请求。这个蓝图方法在当前的sails版本中也不存在,但是你可以使用"sails-hook-blueprint-count"包启用计数方法对所有定义的模型进行过滤。
" sail_hook -blueprint-count"包可以通过npm存储库(https://www.npmjs.com/package/sails-hook-blueprint-count)获得,你可以使用
安装它npm install sails-hook-blueprint-count
命令。
然后,当你启动风帆应用程序时,你可以使用像
这样的路线GET /:model/count
或
GET /:model/count?where={:criteria}
:criteria与find where blueprint methods (http://sailsjs.org/documentation/reference/blueprint-api/find-where)相同。
响应将是json格式
{ count : COUNT }