联系官方销售客服
1835022288
028-61286886
调用全部新闻news模块的标题、缩略图、id号三个字段就行了。
第一步自定义返回函数
my_helper.php增加
function dr_function_test($data) { $now = array(); foreach ($data['return'] as $t) { $t['thumb'] = dr_get_file($t['thumb']); // 图片完整地址 $now[] = array( 'id' => $t['id'], 'thumb' => $t['thumb'], 'title' => $t['title'], ); } return $now; }
然后通过请求地址来获取数据
/index.php?c=api&m=data2&auth=7a3f536bc79a44624e767f40f88de10b&function=dr_function_test¶m=list%20action=module%20module=news
这样做app接口的时候就可以减少请求流量