用户点击旧帖子的方式'按钮用下一个5替换前5个帖子?
PostsController.php
public function index(Request $request)
{
$posts = Post::latest('created_at')->paginate(5);
if ($request->ajax()) {
// replace first 5 posts with next 5
}
return view('index', compact('posts'));
}
style.js
$(document).on('click', '#older_posts', function(e)) {
olderPosts();
}
function olderPosts() {
// ..
}
我要求的不是代码,而是提示最基本的方法如何做到这一点。网上有几个例子,但不知怎的,我不清楚。谢谢