下面是封装的代码,也就是去数据库拿数据
$res = $this->model
->withJoin($this->withJoinTable, $this->withJoinType)
->alias($alias)
->where($where)
->order($order)
->paginate($limit);
var_dump($res);
下面是拿到的数据,这种数据好乱,我要怎么才能拿到我需要的数据?
6.0已经取消resultset_type配置参数
数据集查询结果不再受resultset_type配置参数影响,默认情况下,Db查询统一返回数组,模型查询统一返回模型对象和模型数据集对象。
数据集对象如果需要转换为数组可以使用->toArray()
https://www.kancloud.cn/manua...