I am successfully returning the data from Controller
public function index()
{
$posts = Post::with('status' == 'verified)
->paginate(30);
return view ('show')->with(pact('posts'));
}
Also, I am successfully showing everything in my view:
<div id="content" class="col-md-10">
@foreach (array_chunk($posts->all(), 3) as $row)
<div class="post row">
@foreach($row as $post)
<div class="item col-md-4">
<!-- SHOW POST -->
</div>
@endforeach
</div>
@endforeach
{!! $posts->render() !!}
</div>
Everything is working nicely until now.
However, I didn't get the official documentation at all. What is 'div.navigation
' and '#content div.post
'? What should they be in my case?
Snippet From Documentation:
$('#content').infinitescroll({ navSelector : "div.navigation", // selector for the paged navigation (it will be ?>hidden) nextSelector : "div.navigation a:first", // selector for the NEXT link (to page 2) itemSelector : "#content div.post" // selector for all items you'll retrieve });
Edit: My Javascript So Far
$(document).ready(function() {
(function() {
var loading_options = {
finishedMsg: "<div class='end-msg'>Congratulations! You've reached the end of the internet</div>",
msgText: "<div class='center'>Loading news items...</div>",
img: "/assets/img/ajax-loader.gif"
};
$('#content').infinitescroll({
loading: loading_options,
navSelector: "ul.pagination",
nextSelector: "ul.navigation a:first",
itemSelector: "#content div.item"
});
});
});
The [<[1]2]3]>] part is created at the bottom of the page but infinite scroll doesn't work. Also, I get no logs or errors in the console.
I am successfully returning the data from Controller
public function index()
{
$posts = Post::with('status' == 'verified)
->paginate(30);
return view ('show')->with(pact('posts'));
}
Also, I am successfully showing everything in my view:
<div id="content" class="col-md-10">
@foreach (array_chunk($posts->all(), 3) as $row)
<div class="post row">
@foreach($row as $post)
<div class="item col-md-4">
<!-- SHOW POST -->
</div>
@endforeach
</div>
@endforeach
{!! $posts->render() !!}
</div>
Everything is working nicely until now.
However, I didn't get the official documentation at all. What is 'div.navigation
' and '#content div.post
'? What should they be in my case?
Snippet From Documentation:
$('#content').infinitescroll({ navSelector : "div.navigation", // selector for the paged navigation (it will be ?>hidden) nextSelector : "div.navigation a:first", // selector for the NEXT link (to page 2) itemSelector : "#content div.post" // selector for all items you'll retrieve });
Edit: My Javascript So Far
$(document).ready(function() {
(function() {
var loading_options = {
finishedMsg: "<div class='end-msg'>Congratulations! You've reached the end of the internet</div>",
msgText: "<div class='center'>Loading news items...</div>",
img: "/assets/img/ajax-loader.gif"
};
$('#content').infinitescroll({
loading: loading_options,
navSelector: "ul.pagination",
nextSelector: "ul.navigation a:first",
itemSelector: "#content div.item"
});
});
});
The [<[1]2]3]>] part is created at the bottom of the page but infinite scroll doesn't work. Also, I get no logs or errors in the console.
Share Improve this question edited Oct 19, 2015 at 20:22 senty asked Oct 19, 2015 at 18:55 sentysenty 12.9k30 gold badges141 silver badges267 bronze badges 3-
Well, it's described in the ments what those selector are.
div.navigation
is your navigation (which you don't have, but you could output it like$posts->render()
). anditemSelector
is the selector for one item (in your case:div.col-md-4
. Think about adding another class likepost
to it). – Tim Commented Oct 19, 2015 at 18:58 - I edited my question and added classes as you told, however, I still couldn't connect them in my brain. Can you please show me? – senty Commented Oct 19, 2015 at 19:01
- See my infinit scroll plug in for L5 pagination here stackoverflow./questions/31853472/… – Per Sonberg Commented Mar 2, 2016 at 10:02
1 Answer
Reset to default 6First you need to add the pagination itself like this after the closing #content
div:
{!! $posts->render() !!}
This will output something like:
<ul class="pagination"><li><a>...</a></li>
To overwrite the pagination presenter have a look at this answer on SO.
Then your configuration looks like this:
$(document).ready(function() {
var loading_options = {
finishedMsg: "<div class='end-msg'>Congratulations! You've reached the end of the internet</div>",
msgText: "<div class='center'>Loading news items...</div>",
img: "/assets/img/ajax-loader.gif"
};
$('#content').infinitescroll({
loading: loading_options,
navSelector: "ul.pagination",
nextSelector: "ul.pagination a:first",
itemSelector: "#content div.item"
});
});
Basically, the infinite scroller will call the pagination links for you and thus needs to know, where everything is located to put it all together.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745040609a4607784.html
评论列表(0条)