我是laravel4的新手,我使用Nusoap库在laravel 4中基本上使用SOAP webservices。
我的问题是分页,在控制器我的代码是跟随
function AjaxProductList()
{
$isAjax = Request::ajax();
if($isAjax)
{
//instantiate the NuSOAP class and define the web service URL:
$client = new nusoap_client('http://stage.ws.greenbook.net/gbwswcf/servicegb.svc?wsdl', 'WSDL');
//check if there were any instantiation errors, and if so stop execution with an error message:
$error = $client->getError();
if ($error) {
die("client construction error: {$error}\n");
}
if(Input::get('term'))
{
Session::put('term', Input::get('term'));
$term = Input::get('term');
}
else
$term = Session::get('term');
if(Input::get('pg_number')!='')
{
Session::put('page_num', Input::get('pg_number'));
$page_num = Input::get('pg_number');
}
else
$page_num = Session::get('page_num');
if(Input::get('per_pg_result') !='')
{
Session::put('result_per_page', Input::get('per_pg_result'));
$result_per_page = Input::get('per_pg_result');
}
else
$result_per_page = Session::get('result_per_page');
$param = 'SearchParam=|category@'.Session::get('type').'|searchterm@'.$term;
//$value = Session::get('key');
$params = array( 'ClientID' => Config::get('globals.ClientID'),
'strPwd' => Config::get('globals.password'),
'Params' => $param ,
'PageNum' =>$page_num,
'NumOfResultsPerPage' =>$result_per_page
);
$client->soap_defencoding = 'UTF-8';
$answer = $client->call('GetResultsV2',$params);
//check if there were any call errors, and if so stop execution with some error messages:
$error = $client->getError();
if ($error) {
echo 'some error occured , please try again later';
die();
}
$ResultNumbers = Common::find_key_array('ResultNumbers',$answer);
$data['SearchParams'] = Common::find_key_array('SearchParams',$answer);
$data['products'] = Common::find_key_array('Product',$answer);
$data['total_result'] = $ResultNumbers['TotalNum'];
$data['paginator'] = **Paginator::make($data['products'],$data['total_result'],$result_per_page)**;
$return["prd_listing_bot"] = View::make('frontend.search.ajax_product_listing',$data)->render();
echo json_encode($return);
exit;
}
else
{
echo 'not allowed';
}
}
这里我使用 Paginatior 类并提供参数(返回记录,总项目,每页项目)。
这是我的观看代码:
$paginator->setBaseUrl('search');
echo $paginator->links();
现在成功创建链接
点击5后我的网址结构是
'http://mydomain/search?page=5'.
并且在'routes.php'中我有
Route::any('search', array('uses' => 'SearchController@QuickSearch'));
加载页面视图时,会为函数AjaxProductList();
启动ajax调用当我点击分页中的任何链接时,它会成功填充数据,但不会更新活动链接。即如果我点击第5页,它将获取正确的数据,但活动链接仍将在页面“1”。
请告诉我,如果我做错了什么?提前感谢。
答案 0 :(得分:1)
通过放置
解决它Paginator::setCurrentPage($page_num);
行以上
Paginator::make($data['products'],$data['total_result'],$result_per_page);
无论如何,感谢参与此活动的所有人。
答案 1 :(得分:0)
在Paginator :: make()方法中,第一个参数是已经分页的项目数组。检查此示例:
$perPage = 15;
$currentPage = Input::get('page', 1) - 1;
$pagedData = array_slice($items, $currentPage * $perPage, $perPage);
$matches = Paginator::make($pagedData, count($items), $perPage);
在这个例子中,我使用array_slice方法获取当前页面的项目。要获取控制器中的页面,您可以使用Input::get('page', 1)
,这样如果没有选择默认页面,则为1