我一直在观看 John Papa 关于 Pluralsight 构建 SPA 的精彩视频。
现在,我正在尝试为 Sessions 页面实现分页,但我不确定我所做的是否是正确的方法。如果有人尝试过类似的事情,我将不胜感激。
这就是我所做的。
会话.html
<section>
<footer>
<ul class="pager">
<li>
<button class="btn btn-info btn-small" data-bind="click: previous, enable:canPrev"><i class="icon-angle-left"></i>Previous</button>
</li>
<li>
<button class="btn btn-info btn-small" data-bind="click: next, enable: canPrev">Next<i class="icon-angle-right"></i></button>
</li>
</ul>
</footer>
</section>
会话.js
var currentPage = ko.observable(),
activate = function () {
currentPage(0);
return datacontext.getSessionPartials(sessions);
},
previous = function () {
currentPage(currentPage() - 1);
return datacontext.getSessionPartials(sessions, true, currentPage());
},
canPrev = ko.computed(function () {
return currentPage() > 0;
}),
canNext = ko.computed(function () {
//return currentPage > 0;
}),
next = function () {
currentPage(currentPage() +1);
return datacontext.getSessionPartials(sessions, true, currentPage());
},
var vm = {
//existing stuff plus the following:
previous: previous,
next: next,
currentPage: currentPage,
canPrev: canPrev,
canNext: canNext,
};
数据上下文.js
var query = EntityQuery.from('Sessions')
.select('id, title, code, speakerId, trackId, timeSlotId, roomId, level, tags')
.skip(currentPage * 5).take(5)
.orderBy('timeSlotId, level, speaker.firstName')
.inlineCount(true);
这可行,除了 canNext,因为我不知道如何将 inlineCount 的结果添加到会话视图模型中。最好的方法是什么?