联系官方销售客服
1835022288
028-61286886
我利用php方式按照例子写了一个新闻列表的api接口,但是如何增加 页码和每页几条呢 谢谢
<?php
/**
* api 示例文件
* 变量介绍
* $return 表示标准返回变量
*/
$return = []; // 返回数据
// 查询全部会员,并返回username和email
$data = \Phpcmf\Service::M()->table('dr_1_news')->getAll();
if ($data) {
foreach ($data as $r) {
$return[] = [
'id' => $r['id'],
'title' => $r['title'],
'description' => $r['description'],
'fenlei' => $r['fenlei'],
'catid' => $r['catid'],
'uid' => $r['uid'],
'author' => $r['author'],
];
}
}
list的接口展示样式是这样的