发布时间:2022-11-22 09:30
thinkphp使用分页类paginate后,怎么增加字段?有两种办法:
1、使用paginate对象的each方法,传入回调,在回调函里写(本方法参考网上)。
public function index(){
$pagenum = 20;//默认分页条数
//查询数据
$salesOrderPrepareModel = new salesOrderPrepareModel();
$list = $salesOrderPrepareModel->paginate($pagenum ,false,['query'=>request()->param()])->each(function($item, $key){
return $item['aa'] = 123456;
});
$page = $list->render();
return view('type/index',['list'=>$list,'page'=>$page);
}
2、使用模型追加器
(1)在模型里定义追回器(属性)
(2)在分页的地方,我们先渲染拿到pages分页数据。然后再toArray(),这样定义在模型里的追加器,自然就附带上了。
el-upload http-request使用 多个文件上传携带其他参数方式
npm install时cb() never called!错误解决方法
yolov5训练自己的数据集,零基础小白都能看得懂的教程。YOLOv5 实现目标动态实时检测(训练自己的数据集实现王者荣耀游戏中的识别)yolov5/yolov4/yolov3/>>>>>第二章
python程序 爱意_程序员式优雅表白,教你用python代码画爱心
【比特熊故事汇】X Microsoft Build 2022——微软专家+MVP,技术亮点全解析
CTC Algorithm Explained Part 2:Decoding the Network(CTC算法详解之解码篇)