php – 使用with()在laravel中仅选择DB中的必填字段

foreach(Book::with('author')->get() as $book)
{ 
   echo $book->author->name;
}

上面的循环就像下面两个查询

select * from books

select * from authors where id in (1, 2, 3, 4, 5, ...)

如果我想使用laravel 5.6只选择下面所需的字段查询,我该怎么办?

select book_name, book_description from books

select author_name from authors where id in (1, 2, 3, 4, 5, ...)

解决方法:

用这个:

Book::with('author:id,author_name')->get(['book_name', 'book_description', 'author_id']);

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...