我正在尝试加载分页数据,到目前为止能够加载整个记录。
现在不确定如何加载Laravel分页数据,就像我在没有分页的情况下发送呼叫一样,我得到了一个响应,如
{
'users':[{
'id':1,
'name':'Aamir'
},{
'id':2,
'name':'Jamshed'
}]
}
但是当我启用分页时,会有大量数据与此相关,并且ember开始出错
GET http://localhost:8000/api/users?citySef=Lahore&group=Ap
200 OK
87ms
vendor.js (line 9861)
WARNING: Encountered "total" in payload, but no model was found for model name "total"
答案 0 :(得分:0)
这必须在laravel端固定,
$city = blood_cities::where('sef' , '=', [$citySef])->get();
$users = blood_users::where('city_id', '=',$city[0]->id)
->where( 'group', '=', $group )
->paginate(15);
$return = array(
'users' => $users->items(),
'meta'=> array(
'total'=>$users->total(),
'current_page'=>$users->currentPage(),
)
);
return $return;
现在ember不会给出错误我们会得到结果。
更新时间:2015-05-25
创建分页