Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我看到我可以限制从 fbconnect 返回的帖子数量。但是,我不知道如何浏览帖子?例如,出于速度目的,我只返回前 25 个。然后在用户表格视图的底部放置一个加载下一个 25 按钮,依此类推。如何更改 @"platform/posts?limit=25" 以包含数据的开始和结束位置?
使用offset参数。例如,@"platform/posts?limit=25&offset=25, 并记录按下加载下一个 25 按钮的次数。
offset
@"platform/posts?limit=25&offset=25