分页
对于数量太多的数据,我们很多时候都需要分页操作,这时候我们可以用类似下面这样的请求。
{
"P88666_moment[]":{
"page":0,
"limit":5,
"P88666_moment":{
"@column":"content,id,mDate",
"@order":"mDate-,id,content+"
}
}
}
请注意,这里的page
和count
是放在P88666_moment[]
内的属性,而不是P88666_moment
对象里。这里count
表示每页的数量,page
表示第几页,页数从 0 开始算。