Как получить нумерацию ссылок с помощью ajax (laravel 4.2)

Добрый день,

Как я могу пройти e.g: $transactions->links(); когда делаете вызов ajax на laravel?

Вот мой контроллер по обычному запросу:

$transactions = DB::table('x_general_transactions')
->whereBetween('x_general_transactions.date_at', array($startDate,$endDate))
->paginate(30);

ПОСМОТРЕТЬ

{{ $transactions->(array('from' => $startDate, 'to'=>$endDate))->links() }}

и по запросу AJAX

if (Request::ajax())
{
//$divs is my data container
$res = [$divs,$transactions->links()];
return Response::json($res);
}

поэтому, когда я пытался использовать .load на мой код AJAX

 $.ajax({
url: href,
type: 'get',
dataType: 'json',
success: function(response){
$('.pagination').load(response[1]);
});
});

Но ничего не происходит, я тоже пытался

console.log(response[1]);

Ответ ajax:

[[[{"gt_xid":1230,"gts_xid":1231,"xid":4728,"rnr":4,"code":"OR#","link_code":"CI#","link_rnr":6,"g_type":25,"account_name":"Cash on Hand","debit":50.5,"credit":0,"description":"","date_at":"2015-10-25 16:25:19"},{"gt_xid":1230,"gts_xid":1231,"xid":4729,"rnr":4,"code":"OR#","link_code":"CI#","link_rnr":6,"g_type":25,"account_name":"Accounts Receivable - Trade","debit":0,"credit":50.5,"description":"","date_at":"2015-10-25 16:25:19"}]],{}]


result:
объект {} `который пуст.

3

Решение

надеюсь, это поможет

Ответ контроллера (используйте render для рендеринга html и отправки ответа)

if (Request::ajax())
{
$res = array(
'data' => $divs,
'links' => $transactions->links()->render()
);
return Response::json($res);
}

код Ajax

 $.ajax({
url: href,
type: 'get',
dataType: 'json',
success: function(response){
console.log(response.data);//get data
console.log(response.links);//get links
$('.pagination').load(response.data);
});
});
1

Другие решения

Надеюсь, этот код поможет вам

Route::get('/home/ajax/get','TestController@getAjax');
public function getAjax() {

$transactions = DB::table('x_general_transactions')
->whereBetween('x_general_transactions.date_at', array($startDate,$endDate))
->paginate(30);
return View::make('home.ajax.data')->with('transaction',$transaction);
}

Создать файл php для загрузки данных из TestController

<div id="content">
<table>
<tr>
<td>id</td>
<td>transaction</td>
<td>customer</td>
</tr>
@foreach($transaction as $key => $val )
<tr>
<td>{{ $val->id }}</td>
<td>{{ $val->transaction }}</td>
<td>{{ $val->customer }}</td>
</tr>
@endforeach
<tfoot>
<tr>
<td colspan="3" align="center">{{ $transaction->links() }}</td>
</tr>
</tfoot>
</table
</div>

Главная просмотр загрузить страницу

<html>
<head>
<title>Transaction</title>
</head>
<body>
<div class="box-body table-responsive no-padding">
@include('home.ajax.data')
</div>
</body>
</html>

Поместите этот JavaScript на домашний вид

$(window).on('hashchange',function(){
page = window.location.hash.replace('#','');
});
$(document).on('click','.pagination a', function(e) {
e.preventDefault();

//to get what page, when you click paging
var page = $(this).attr('href').split('page=')[1];
//console.log(page);

getTransaction(page);
location.hash = page;
});
function getTransaction(page) {

//console.log('getting sort for page = '+page);
$.ajax({
type: 'GET',
url: '{{URL::to("/home/ajax/get?page=")}}'+page
}).done(function(data) {
console.log(data);
$('#content').html(data);
});
}

REF: https://gist.github.com/tobysteward/6163902

0

По вопросам рекламы [email protected]