我需要将Expression Engine与http://www.infinite-scroll.com结合使用。
我已尝试过多种将分页与jQuery插件相结合的方法,但无法找到成功的方法。
我可以通过将我的条目限制为2来使其工作(一点点),这会启用无限滚动但是由于某种原因,一旦你点击第2页,条目会重复吗?例如,我有6个条目,一旦我滚动到底部,它加载接下来的两个罚款但当我滚动到这个页面的底部时,它重新加载第4个条目,当我滚动到第3个页面的底部它会重新加载第5个条目等...所以我有2个条目4,条目5等2等等...
如果我将限制更改为3(这是我想要的数量),无限滚动根本不会运行,任何想法?
是否有人使用Expression Engine成功使用Infinite Scroll。它似乎适用于其他CMS系统,但表达引擎。
以下是我正在努力完成的链接:
这是我的代码:
[removed][removed]
[removed]
$('#content').infinitescroll({
// callback : function () { console.log('using opts.callback'); },
navSelector : "#content .navigation",
nextSelector : "#content a.next",
itemSelector : "#content .post",
debug : false,
dataType : 'html',
// behavior : 'twitter',
// appendCallback : false, // USE FOR PREPENDING
// pathParse : function( pathStr, nextPage ){ return pathStr.replace('2', nextPage ); }
}, function(newElements){
//USE FOR PREPENDING
// $(newElements).css('background-color','#ffef00');
// $(this).prepend(newElements);
//
//END OF PREPENDING
window.console && console.log('context: ',this);
window.console && console.log('returned: ', newElements);
});
[removed]
<div id="content">
{exp:channel:entries channel="blog" limit="2" paginate="bottom"}
<section class="post">
<article>
<h1>{title}</h1>
<h2 class="margin">{entry_date format="%d %M, %Y"}</h2>
{blog_copy}
<ul class="social-icons">
<li><span class="st_facebook_custom" st_title="INC Daily - {title}" st_url="{page_url}"><img src="/inc_daily/images/fb-icon.gif" alt=""/> </span></li>
<li><span class="st_twitter_custom" st_title="INC Daily - {title}" st_url="{page_url}"><img src="/inc_daily/images/twitter-icon.gif" alt=""/> </span></li>
</ul>
</article>
{exp:imgsizer:size src="{blog_image}" width="528" height="356"}
<img src="{sized}" width="{width}" height="{height}" alt="" />
{/exp:imgsizer:size}
</section><!-- END POST -->
{paginate}
<div class="navigation">
<span id="paginationtotal" title="{exp:stats channel='blog'}{total_entries}{/exp:stats}"></span>
{if next_page}<a class="next" href="{auto_path}">Next Page</a>{/if}
</div>
{/paginate}
{/exp:channel:entries}
</div>
答案 0 :(得分:1)
在修改了保罗爱尔兰人的榜样后,我有一段时间的工作了。你可以看到我在这里做了什么:
https://github.com/imjared/projects/tree/master/ee_inf_scroll
抱歉缺乏文档和清晰度,希望它有所帮助。