调用未定义的方法stdClass :: links()

时间:2018-10-11 10:56:37

标签: laravel laravel-5

我正在向Web API发送一个请求,该请求以编码的分页响应进行响应,我正在接收该响应并将其成功解码。响应如下所示:

{#225 ▼
  +"message": "تم بنجاح"
  +"code": "1"
  +"data": {#220 ▼
    +"current_page": 1
    +"data": array:10 [▶]
    +"from": 1
    +"last_page": 2
    +"next_page_url": "http://localhost:8000/api/getpostsadmin?page=2"
    +"path": "http://localhost:8000/api/getpostsadmin"
    +"per_page": 10
    +"prev_page_url": -1
    +"to": 10
    +"total": 11
  }
} 

下面是控制器代码的一部分:

  if ($response->code=='1')
            {
//                dd($response->data);
                $data=$response->data;

//
//                dd($data);
                 return view('posts',compact('data'));
            }

这是查看代码:

 <div class="table-responsive">
                    <table class="table table-bordered" id="dataTable" width="100%" cellspacing="0">
                        <thead>
                        <tr>
                            <th>ID</th>
                            <th>Title AR</th>
                            <th>Title EN</th>
                            <th>Description AR</th>
                            <th>Description EN</th>
                            <th>Created At</th>
                        </tr>
                        </thead>
                        <tfoot>
                        <tr>
                            <th>ID</th>
                            <th>Title AR</th>
                            <th>Title EN</th>
                            <th>Description AR</th>
                            <th>Description EN</th>
                            <th>Created At</th>
                        </tr>
                        </tfoot>
                        <tbody>
                        @foreach($data->data as $datum)
                        <tr>
                            <td>{{$datum->id}}</td>
                            <td>{{$datum->title_ar}}</td>
                            <td>{{$datum->title_en}}</td>
                            <td>{{$datum->description_ar}}</td>
                            <td>{{$datum->description_en}}</td>
                            <td>{{$datum->created_at}}</td>
                        </tr>
                        @endforeach



                        </tbody>
                    </table>
                    {!! $data->links() !!}
                </div>

为什么总是出现此错误? 我改用render()方法和{!! $data->data->links() !!}, 但没有任何效果。

返回响应的API代码为:

$post=post::orderBy('created_at','asc')->paginate(10); $post=$post->toArray(); $post=public_functions::remove_nulls($post); 
return response()>json(["message"=>"success","code"=>'1','data'=>$post]);

1 个答案:

答案 0 :(得分:0)

不知道您是否仍然有问题,但是您正在使用

$post = post::orderBy('created_at','asc')->paginate(10);

紧随其后

$post = $post->toArray();

最后

return response()>json([
  "message" => "success",
  "code" => "1",
  "data" => $post
]);

有一种方法->links()可用于->paginate()的结果,但是一旦使用->toArray()就不会使用,一旦将其强制转换为肯定不会 json通过response()->json()

如果您想在->links()响应中使用json,则需要在转换和转换之前附加它,或将其设置为新变量:

$post = post::orderBy('created_at','asc')->paginate(10);
$links = $post->links();
$post = $post->toArray();
$post["links"] = $links;

return response()>json([
  "message" => "success",
  "code" => "1",
  "data" => $post
]);

在这种情况下,您应该能够在视图中调用{!! $data->links !!}并正确呈现分页链接。请注意$post是什么,以及为什么函数不能在其中使用。