需要在Adobe业务催化剂中对液体照片库模块进行分页

时间:2016-06-17 13:00:26

标签: liquid business-catalyst

所有图片都装在同一页面上,我怎样才能控制使用分页? 任何人都可以帮我解决这个问题。

这是我的代码。

{module_photogallery id="123456" collection="test2016" template="" }
<div class="container">
    <div class="row">
        {% for item in test2016.items %}
        <div class="col-md-3 col-sm-3 col-xs-6">
            <a onclick="myLightbox.start(this);return false;" rel="lightbox[photo2015]" href="{{item.link}}">
                <img src="{{item.link}}?Action=thumbnail&Width=250&Height=150&algorithm=fill_proportional">
            </a>
        </div>
        {% endfor %}
    </div>
</div>

1 个答案:

答案 0 :(得分:5)

BC提供了分页对象来完成它。 该对象为您提供了6个参数:currentPage,itemsPerPage,numberOfPages,totalItemsCount,previousPageUrl,nextPageUrl。 首先,您需要添加resultsPerPage =&#34;&#34;到初始的photogallery模块标签,然后添加,例如{{test2016.pagination.previousPageUrl}}作为锚标签的href,以获得上一页链接。

这取决于你想要什么,但你可能最终得到这样的东西:

<Scene key="home" title="saba" component={Home} navBar={NavBar} initial/>

使用一些if ... then语句和一些其他参数来获得您想要的内容。