一. 接口开发的设置:
~~~
// 是否强制使用路由
'url_route_must' => true,
// 路由是否完全匹配
'route_complete_match' => true,
// 异常处理handle类 留空使用 \think\exception\Handle 自定义的一场处理类路径
'exception_handle' => '\app\lib\exception\ExceptionHandler',
// 数据集返回类型
'resultset_type' => 'collection',
// 默认输出类型
'default_return_type' => 'json',
~~~
日志设置: 关闭日志自动写入
二. 数据关联复杂应用
~~~
self::with(['items','items.img'])->find($data);
items.img指 items方法关联的模型下的img关联
~~~
杂项知识:
~~~
数据转换: collection($array);
数据集->hidden()方法
数据集判空方法: $coll->isEmpty
~~~