public function ajax()
{
$rs = DlModel::with('editor')->select();
return ['data'=>collection($rs)->toArray()];
}
错误信息如下:
InvalidArgumentException in Response.php line 316
variable type error: array
{
if (null == $this->content) {
$content = $this->output($this->data);
if (null !== $content && !is_string($content) && !is_numeric($content) && !is_callable([
$content,
'__toString',
])
) {
throw new \InvalidArgumentException(sprintf('variable type error: %s', gettype($content)));
}
$this->content = (string) $content;
}
return $this->content;
}
备注:Editor信息能获取另外发现with后不能使用all
最佳答案
