apiCloud实现加载更多效果 1.接口支持,加入参数page. $page = $this->_request('page','trim','1'); $pagesize = 10; // 默认获取10条 2.利用limit获取数据 select * from sh_category limit 20; select * from sh_category limit 0,10; // 第一页 select * from sh_category limit 10,10;// 第二页 程序处理…