php - View 中的 Laravel 5 Pagination undefined variable 车辆

标签 php laravel pagination laravel-5

我正在尝试使用 L5 分页,一切看起来都很好,直到我点击第二页链接。当我点击它时出现此错误:

Laravel 5 Pagination undefined variable vehicles in view

Controller

public function search() {
    $vehicle = Vehicle::with('representive','seller','buyer','whoUpdated')->orderBy('created_at', 'desc')->first();;

    $previous = Vehicle::where('id', '<', $vehicle->id)->max('id');

    $next = Vehicle::where('id', '>', $vehicle->id)->min('id');

    $first = Vehicle::orderBy('created_at', 'asc')->first();
    $last = Vehicle::orderBy('created_at', 'desc')->first();


    //passing rapyd components
    $rapydProcess = new RapydController();
    $searchFilter = $rapydProcess->createSearchFilter();
    $searchGrid = $rapydProcess->createVehicleDataGrid($searchFilter);
    $vehicleTrackFilter = $rapydProcess->createVehicleTrackFilter();
    $vehicleTrackDataGrid = $rapydProcess->createVehicleTrackDataGrid($vehicleTrackFilter);
    //$statisticsDataGrid = $rapydProcess->statisticsDataGrid();

    //passing select box contents to view
    $clients = Client::lists('full_name', 'id');
    $vehicleTypes = VehicleType::lists('vehicle_type', 'id');
    $sections = Section::lists('section_name', 'id');
    $brands = Brand::lists('brand_name', 'id');
    $paymentTypes = PaymentType::lists('payment_type', 'id');
    $searchOptions = StatisticsSearchOptions::lists('option_name', 'slug');

    $option1 = Request::get('option1');
    $option2 = Request::get('option2');
    $condition = Request::get('condition');
    $date_option = Request::get('dateOption');
    $option1_value = Request::get('option1_value');
    $option2_value = Request::get('option2_value');
    $fromDate = Request::get('fromDate');
    $toDate = Request::get('toDate');

    if (isset($option1_value)) {
        $actual_option1 = '';
        foreach ($option1_value as $value) {
            if ($value != '') {
                $actual_option1 = $value;
            }
        }
    }

    if (isset($option1_value)) {
        $actual_option2 = '';
        foreach ($option2_value as $value) {
            if ($value != '') {
                $actual_option2 = $value;
            }
        }
    }

    if($condition == 'no'){
        $vehicles = Vehicle::with('brand','section','representive','buyer','seller','buyingPaymentType','sellingPaymentType')->where($option1, $actual_option1)->paginate(2);
        //return $vehicle;
    }
    if($condition == 'or'){
        $vehicles = Vehicle::with('brand','section','representive','buyer','seller','buyingPaymentType','sellingPaymentType')->where($option1, $actual_option1)->orWhere($option2, $actual_option2)->paginate(2);
    }
    if($condition == 'and'){
        $vehicles = Vehicle::with('brand','section','representive','buyer','seller','buyingPaymentType','sellingPaymentType')->where($option1, $actual_option1)->where($option2, $actual_option2)->paginate(2);
    }

    return view('pages.aracislemler', compact('vehicles','condition','option1','option2','actual_option1','actual_option2','vehicle','previous','next','first','last','searchFilter', 'searchGrid', 'vehicleTrackFilter', 'vehicleTrackDataGrid', 'statisticsDataGrid', 'vehicleTypes', 'sections', 'brands', 'clients','paymentTypes','searchOptions'));
    //return $vehicles;
}

查看

@if(isset($vehicles))
    @foreach($vehicles as $vehicle)
        <tr>
            <td style="padding: 15px;">{{ $vehicle->id }}</td>
            <td style="padding: 15px;">{{ $vehicle->brand_id }}</td>
            <td style="padding: 15px;">{{ $vehicle->model }}</td>
            <td style="padding: 15px;">{{ $vehicle->type_id }}</td>
            <td style="padding: 15px;">{{ $vehicle->licenseplate }}</td>
            <td style="padding: 15px;">{{ $vehicle->representive_client_id }}</td>
            <td style="padding: 15px;">{{ $vehicle->buyer_client_id }}</td>
            <td style="padding: 15px;">{{ $vehicle->seller_client_id }}</td>
            <td style="padding: 15px;">{{ $vehicle->debit_situation }}</td>
            <td style="padding: 15px;">{{ $vehicle->partner_situation }}</td>
            <td style="padding: 15px;"><a href="{{ URL::to( 'pages/vehicles?show=' . $vehicle -> id ) }}">Git</a></td>
        </tr>
    @endforeach
@endif

{!! $vehicles->appends(['condition' => 'condition','option1' => 'option1','option2' => 'option2','actual_option1' => 'actual_option1','actual_option2' => 'actual_option2'])->render()!!}

作为一个 L5 新手,我不知道该怎么办,我该如何解决这个问题? 任何帮助将不胜感激。

最佳答案

您没有将 $condition 附加到分页,所以它丢失了。在返回 View 之前的 if 语句中(在 Controller 中),您仅在满足 $condition 时设置 $vehicles 变量(那里没有回退),因此它不会将 $vehicles 传递给 View 。设置回退是明智的,如果实际上没有条件,请将 $vehicles 变量设置为某些内容,否则会导致您遇到错误。

请注意,您还必须将其传递给您的 View ! (你目前没有这样做)

在你的 View 中尝试这样的事情:

{!! $vehicles->appends(['condition' => $condition])->render()!!}

并将其添加到您的 Controller :

return view('pages.aracislemler', compact('vehicles', 'condition'...

来源:http://laravel.com/docs/5.1/pagination (搜索追加)

编辑(如评论中所讨论和@HieuLu 所解释的那样:(例如,您可能必须根据需要更改最后一个 else)

if($condition == 'no'){
    $vehicles = Vehicle::with('brand','section','representive','buyer','seller','buyingPaymentType','sellingPaymentType')->where($option1, $actual_option1)->paginate(2);
    //return $vehicle;
}
elseif($condition == 'or'){
    $vehicles =             Vehicle::with('brand','section','representive','buyer','seller','buyingPaymentType','sellingPaymentType')->where($option1, $actual_option1)->orWhere($option2, $actual_option2)->paginate(2);
}
elseif($condition == 'and'){
    $vehicles = Vehicle::with('brand','section','representive','buyer','seller','buyingPaymentType','sellingPaymentType')->where($option1, $actual_option1)->where($option2, $actual_option2)->paginate(2);
} 
else {
    $vehicles = Vehicle::with('brand','section','representive','buyer','seller','buyingPaymentType','sellingPaymentType')->paginate(2);
}

关于php - View 中的 Laravel 5 Pagination undefined variable 车辆,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31164600/

相关文章:

php - Laravel 嵌套路由问题

php - Laravel 5.1 身份验证 - token 不匹配

php - 如何更新数据库中的json字段laravel?

jquery - Drupal 分页上的无限滚动跳过第二页

PHP、MYSQL 自动完成功能不起作用

php - MySQL:使用 REGEX 从一条记录中提取所有匹配项

php - 无法使用 php 删除 sql 行

laravel - 在 Laravel 中正确使用访问器

java - 分页大结果集的最佳方法是什么-Java

iOS tableView 分页