laravel分页 links()是否仍可在Jquery上使用?
我有一个模块,需要使用ajax和laravel api列出html中的所有数据。并且必须具有分页功能,现在我已经创建了功能来列出html中的所有数据,让我向您展示代码。
$(document).ready(function(){
$.ajax({
url:'http://localhost:8000/api/news_event',
dataType: "json",
contentType: "application/json",
success:function(response) {
console.log(response);
var news_event = response[0].news.data;
$.each(news_event, function (index, el) {
var stringify_list_news_event = jQuery.parseJSON(JSON.stringify(el));
var news_event_title = stringify_list_news_event['content_title'];
var news_event_content = stringify_list_news_event['content'];
var news_event_content_id = stringify_list_news_event['content_id'];
var news_event_data;
news_event_data = '<a href="/news_event_content/'+news_event_content_id+'" style="color:black; text-decoration: none; ">\
<h5 style=" font-size:20px; font-weight: bold; ">'+news_event_title+'</h5>\
</a> <p>'+news_event_content+'</p><br><br>';
$('.news_event_data').append(news_event_data);
});
},
error:function(response) {
console.log(response);
}
});
});
还有我的html将在其中添加数据的地方
<div class="news_event_data">
</div>