Laravel 分页:为什么有些页面返回 undefined offset: 0?[复制]

Laravel pagination: why are some pages returning undefined offset: 0? [duplicate]

提问人:M. Mandigers 提问时间:4/7/2019 最后编辑:TalhaM. Mandigers 更新时间:4/7/2019 访问量:1709

问:

因此,我有一个包含大约 1700 条记录的列表,我想以每页五条记录的分页方式显示它,并且在大多数情况下,这是使用我当前拥有的代码的。我遇到的问题是,当我转到某些页面时,会出现此错误:.当我发送到视图的数据时,它包含一个索引为 0 的项目。Undefined offset: 0 (View: Project\resources\views\minors\index.blade.php)var_dump

控制器方法:

    public function index( Request $request )
    {
        $locations = Location::all();
        $minors = Module::paginate(5);
        return view('minors.index')->with(compact('minors','locations'));
    }

视图:

    @if(isset($minors))
        @foreach($minors as $key => $minor)
            <a id="minorLinkId" class="minorLink" href="{{ Action('MinorController@show', $minor->id)  }}">
                <div id="minorContainerId" class="minorContainer">
                    <div class="textContainer">
                        <h3>{{$minor->name}}</h3>
                        <p>{{@strip_tags($minor->subject)}}</p>
                    </div>
                    <div class="imageContainer">
                        <img src="{{asset('img/person-placeholder.jpg')}}">
                        <ul>
                            <li>ECTs: {{$minor->ects}}</li>
                            <li>Taal: {{$minor->language}}</li>
                            <li>Niveau: {{$minor->level}}</li>
                            <li>{{$minor->locations[0]->Name }}</li>
                        </ul>
                    </div>
                </div>
            </a>
        @endforeach
           {{ $minors->links() }}
    @endif

第一部分放在控制器的索引方法之前:var_dump($minors)return view('minors.index')

object(Illuminate\Pagination\LengthAwarePaginator)#486 (11) { ["total":protected]=> int(1710) ["lastPage":protected]=> int(342) ["items":protected]=> object(Illuminate\Database\Eloquent\Collection)#479 (1) { ["items":protected]=> array(5) { [0]=> object(App\Module)#478 (26) { ["guarded":protected]=> array(0) { } ["connection":protected]=> string(5) "mysql" ["table":protected]=> string(7) "modules" ["primaryKey":protected]=> string(2) "id" ["keyType":protected]=> string(3) "int" ["incrementing"]=> bool(true) ["with":protected]=> array(0) { } ["withCount":protected]=> array(0) { } ["perPage":protected]=> int(15) ["exists"]=> bool(true) ["wasRecentlyCreated"]=> bool(false) ["attributes":protected]=> array(33) {

我怀疑这个问题与控制器索引方法中的返回语句有关,但我不明白为什么它只发生在某些页面上。

我很感激你的帮助。

php laravel 分页 laravel-blade undefined-index

评论


答:

3赞 Rafay Hassan 4/7/2019 #1

错误是由于此行造成的

<li>{{$minor->locations[0]->Name }}</li>

您正在尝试访问不存在的索引零,因为 locations 数组为空或未定义。您可以将上述代码替换为以下代码:

@if(sizeof($minor->locations) > 0)
    <li>{{$minor->locations[0]->Name }}</li>
@endif

sizeof() 函数对数组中的元素或对象中的属性进行计数。它返回数组中元素的数量。