通过模型绑定获得数据以后怎么指定字段
public function show(NewList $newList) { $comments= $newList->comments()->get(['id','content','created_at']); $status=0; $message=$newList; return self::Json(compact('status','message','comments')); }
获得的newLIst不想获得全部字段怎么指定字段,如果加上get以后就会获得的所有的数据了
3 Comments
好好看文档:https://xueyuanjun.com/post/9697.html#toc_7 有 select 方法来指定查询字段
试过了
public function show(NewList $newList) {
绕后message就变成一个空对象了。。。。。
select 后面还要再调用 get 或 first 方法
还是文档没仔细看