Exception in InterfaceController.php line 1337:
Failed calling App\Model\Incomm::jsonSerialize()
laravel 如何使用json_encode();
有些地方使用是好的,有些地方使用就会报错这是为什么
代码如下:
if($type == 2){
$infos = Incomm::where('user_id',$user_id)->where('infwc',2)->paginate(16);
$info = array();
foreach($infos as $val){
$info[] = $val;
}
}
$rs = array(
'info'=>$info
);
echo json_encode($rs);
exit;
这样就会报这种错
修改的评论也不能少于六个字哦!
0
分享