with的第二个参数没有生效
来源:8-13 完成Theme简要信息接口
一坨普信男
2019-06-07
class Theme
{
public function getSimpleList($ids=''){
(new IDCollection())->goCheck();
$ids=explode(',',$ids);
$result=ThemeModel::with('topicImg','headImg')->select($ids);
return json($result);
}
}
老师我在with里设置第二个参数不生效是怎么回事?
返回的数据中只有
"topic_img": {
“url”: “http://localhost/images/2@theme.png”
}
没有
"head_img": {
“url”: …
}
写回答
1回答
-
一坨普信男
提问者
2019-06-07
写错了应该是with('topicImg,headImg')
00
相似问题