我有这段代码:
$products = \App\Product::whereIn('id', $arrayKeys)
->with('photo')
->get();
如果我使用像这样的选择代码:
$products = \App\Product::whereIn('id', $arrayKeys)
->select(['desc'])
->with('photo')
->get();
我无法看到照片。有办法吗?这样我就可以获得所选字段以及照片关系。