我开发了一个laravel Web应用程序并创建了业务列表的分页视图......
我的业务表中有两个业务行,并在视图中收集每一行,为访问其他行提供分页...
控制器..
public function businessindex(){
$arr = DB::table('business')->paginate(1);
$arr->setPath('business');
return View::make('admin.SABC.businessindex')->with('data',$arr);
}
routes.php文件
Route::get('business',['as'=>'business','uses'=>'SABusinessCustomersController@businessindex']);
查看。
<tbody>
<?php $i=1;?>
@foreach($data as $datas)
<tr>
<td>{{$i++}}</td>
<td>{{$datas->ci_busns_name}}</td>
<td>{{$ctgry}}</td>
<td>{{date('M-d-Y',strtotime($datas->created_at))}}</td>
<td><span class="{{$grenclass}}">{{$status}}</span><span class="{{$redclass}}" id="{{$datas->pk_business_id}}">{{$oppostatus}}</span></td>
<td><span class="{{$lgrenclass}}">{{$lglstatus}}</span><span class="{{$lredclass}}" id="{{$datas->pk_business_id}}">{{$opplgl}}</span></td>
<td>
<span><a class="editThis" id="{{Crypt::encrypt($datas->pk_business_id)}}" href="{{URL::route('edit_business_view',[Crypt::encrypt($datas->pk_business_id)])}}"></a></span>
<span><a onclick="return confirm('Are you sure you want to delete this item?');"
class="dltThis" href="{{URL::route('brand_delte',[$datas->pk_business_id])}}"></a></span>
</td>
</tr>
@endforeach
</tbody>
</table>
<span class="totalContspan">Showing 0 to {{$i-1}} of {{$i-1}} entries</span>
<div class="paghdlr">{!! str_replace('/?', '?', $data->render()) !!}</div>
<div class="clearfix"></div>
现在我正在上面截图,它在我的页面中不断发送太多的ajax请求。我可以从Firebug的网络标签中看到。
当点击链接它抛出ajax请求并得到404错误时,我没有在我的网站中尝试laravel ajax分页。只需要Laravel分页。
我如何解决这个问题..?