We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
本协议由张泽和李雅堂共同敲定,如有错漏留issue
目前发现每个业务都自有一套分页的写法,各不相同,带来接入成本。估借此统一。
offset
limit
count
--------offset----offset+limit---------------------->count
请求 url 上带参数 xxxx?offset=0&limit=10
返回格式
{ "code": 0, "data": [], "pagination": { "offset": 10, "limit": 10, "count": 90 } }
Pagination