1

我正在将 NgAdmin 与 Laravel 一起使用,以使用 Angular 创建一个带有 Admin 结构的 restAPI。

控制器中的所有方法一切正常,但是我需要获取某个特定表中的所有项目(结果未分页)

 public function index()
{
    try{
        $statusCode = 200;
        $builder = \ApiHandler::parseMultiple($this->place, array('latitude,longitude'), $this->passParams('places'));
        $places = $builder->getResult();
        $response = [];
        foreach($places as $place){
            $response[] = [
                'id'    => $place->id,
                'latitude'  => $place->latitude,
                'longitude'  => $place->longitude,
                'updated_at' => $place->updated_at
            ];
        }

        return $this->makeResponse($response,$statusCode, $builder);
    }catch (\Exception $e){
        $statusCode = 500;
        $message = $e->getMessage();
        return \Response::json($message, $statusCode);
    }
}

问题是我$builder总是给我一个315项目的限制,其余的分页。

各位有遇到同样的问题吗?

我想要的只是获得all物品。

4

0 回答 0