接口程序部分,來源于網(wǎng)絡(luò)圖,但很有用
前端url: ‘/admin.php/Article/lists’
后端
publice function lists(){
$page=$_GET[‘page’];
$limit=$_GET[‘limit’];
…連接數(shù)據(jù)庫…
$count=$db->where(‘is_open=1’)->count();
$list=$db->field(……)->where(……)->page($page,$limit)->select();
//寫入JSON
$arr=array();
$arr[‘code’]=0;
$arr[‘msg’]=””;
$arr[‘count’]=$count;
$arr[‘data’]=$list;
$arr_json=json_encode($arr);
echo $arr_json;
}
部分請參考官方手冊:layui 接口數(shù)據(jù)格式
微信掃碼
關(guān)注PHP中文網(wǎng)服務(wù)號
QQ掃碼
加入技術(shù)交流群
Copyright 2014-2025 http://ipnx.cn/ All Rights Reserved | php.cn | 湘ICP備2023035733號