基于Discover Meteor的铁路由器无限滚动

时间:2014-05-28 04:33:43

标签: meteor iron-router

我似乎无法通过Commit 12-5获得无限滚动。它只对mrt add iron-router-progress说,一切都应该有效,但我的页面保持清爽。以下是我正在使用的内容:

PostsListController = RouteController.extend({
    template: 'blog',
    increment: 20,
    limit: function() {
        return parseInt(this.params.postsLimit) || this.increment;
    },
    waitOn: function() {
        return Meteor.subscribe('posts', this.limit());
    },
    posts: function() {
        return Posts.find({}, {
            limit: this.limit()
        });
    },
    data: function() {
        var hasMore = this.posts().count() === this.limit();
        var nextPath = this.route.path({
            postsLimit: this.limit() + this.increment
        });
        return {
            posts: this.posts(),
            nextPath: hasMore ? nextPath : null
        };
    }
});

Router.map(function() {
    this.route('blog', {
        path: '/:postsLimit?',
        controller: PostsListController
    })
})

Router.configure({
    layoutTemplate: 'layout',
    notFoundTemplate: 'notFound',
});

当我点击加载更多时,一切似乎都有效,页面闪烁并跳回到顶部!

1 个答案:

答案 0 :(得分:1)

正如您可以在与提交相关的GitHub问题中看到的,它实际上是0.7.1版本的铁路由器中的一个错误。使用他们使用的版本(查找smart.lock文件),它不会刷新并转到顶部。