Meteor模板

时间:2017-04-02 11:14:44

标签: javascript meteor meteor-blaze flow-router

使用Meteor与blaze模板和流路由器,我发现如果我创建一个新元素,那么页面不会更新以显示它,但如果我删除相同的元素,它会立即消失。这是模板代码:

<template name="EditProject">
    ...
    {{#each currentCounts }}
        <div class="count-box">{{> CountDelete }}</div>
    {{/each}}
    ...
    <btn class="btn waves-effect waves-light h-button" id="add-count">Add Count</btn>
    ...
</template>

<template name="CountDelete">
    <div class="card blue-grey lighten-2 count-box">
        <div class="card-content white-text">
            <span class="card-title">
                {{ name }}
            </span>
            {{ notes }}
        </div>
        <div class="card-action">
            <btn class="btn waves-effect waves-light delete-count">
                <i class="mdi mdi-delete"></i>
            </btn>
            <a class="btn waves-effect waves-light" href="/edit_count/{{ _id }}">
                <i class="mdi mdi-pencil"></i>
            </a>
        </div>
    </div>
</template>

currentCounts的来源是:

Template.EditProject.helpers({
    currentCounts: function() {
        var projectId = FlowRouter.getParam('projectId');
        const project = Projects.findOne(projectId);
        var counts = Counts.find({
            _id: { $in: project.counts }
            },
            {
                sort: { sort_order: -1 }
            }
        );
        return counts;
    }
})

如上所述,单击.delete-count按钮会删除关联的计数,并会导致UI更新以显示已消失。添加计数(来自#add-count的点击)会正确创建计数,但页面不会更新。有一个短暂的闪烁,但就是这样,刷新页面会导致新计数出现。有谁能建议发生了什么?

编辑:这是订阅,如评论所示:

Template.EditProject.onCreated(function() {
    var self = this;
    self.autorun(function() {
        var projectId = FlowRouter.getParam('projectId');
        self.subscribe('single-project',projectId);
        self.subscribe('project-counts',projectId);
    })
})

进一步编辑:

首次访问此路线时,页面会按原样呈现,并通过{{#each currentCounts}}显示多个计数的列表。如果我删除其中一个计数,它会立即从屏幕上消失,但如果我添加一个新计数,则在刷新页面之前它不会显示。

另一个编辑:

根据请求添加监听器和服务器发布代码(在server / main.js中)。奇怪的是,当再次启动应用程序时,一切都开始按预期运行,但在几分钟之内,我所描述的相同行为重新确立了自己。

Meteor.publish('project-counts', function projectPublication(projectId) {
    let project = Projects.findOne({_id: projectId, knitter: this.userId});
    return Counts.find({_id: { $in: project.counts }});
});
Meteor.publish('single-project', function projectPublication(projectId) {
    return Projects.find({_id: projectId, knitter: this.userId});
});

'click #add-count'(event) {
    //TODO: Check for duplicate count name
    var projectId = FlowRouter.getParam('projectId');
    var countName = $('#new-count').val();
    var countNotes = $('#new-count-notes').val();

    if (!countName) {
        $("#errors-go-here").empty();
        Blaze.renderWithData(Template.EditProjectErrors, {
            errors: ['You must supply a name for the new count.']
        }, $("#errors-go-here")[0])
        $('.modal').modal();
        $('#validation-errors').modal('open');
        return;
    }

Template.EditProject.events({
    ...
    Meteor.call('projects.add-count',projectId,countName,countNotes, function(error) {
            if (error) {
                console.log("Count add error: " + error);
                Materialize.toast('Failed to add count \'' + countName + '\'!', 3000, 'orange darken-4');
                return false;
            } else {
                Materialize.toast('Count \'' + countName + '\' added!', 3000, 'blue-grey');
                $('#new-count').val(null);
                $('#new-count-notes').val(null);
                // Running this makes the missing count show up, but this is clearly not the right way to do it...
                //location.reload(); 
            }
        });
    },
    ...
)}



Template.CountDelete.events({
    'click .delete-count'(event) {
        var self = this;
        var projectId = FlowRouter.getParam('projectId');
        var countId = self._id;
        const count = Counts.findOne(countId);
        const name = count.name;

        Meteor.call('projects.delete-count',projectId,countId, function(error) {
            if (error) {
                console.log("Count add error: " + error);
                Materialize.toast('Failed to delete count \'' + name + '\'!', 3000, 'orange darken-4');
                return false;
            } else {
                Materialize.toast('Count \'' + count.name + '\' deleted!', 3000, 'blue-grey');
            }
        });

    },

})

进一步的信息:我发现一旦页面加载,它就会表现得如此。但是,如果它重新加载,那么它会开始行为不端。因此,由于代码更改,Meteor已刷新页面,因此我原本没有注意到正确的行为。

1 个答案:

答案 0 :(得分:1)

要完成,您可能还应该共享方法代码(即'projects.add-count''projects.delete-count')。

话虽如此,我怀疑他们在counts集合中更新_id等于projectId的文档的Projects数组字段。

在这种情况下,查看您的'project-counts'出版物,我们发现它取决于Projects.findOne查询,该查询在服务器端与标准Meteor无关。

因此,当您添加&#34; count&#34;是将新文档添加到Counts集合中,并且其_id很可能正确记录在项目的counts字段中,但这不会重新执行您的出版物码。因此,游标选择器查询未更改,并且您的客户端未在其Counts集合中收到任何修改。

假设您的方法代码都在客户端和服务器中加载,客户端执行存根/模拟,插入此新文档并在本地更新项目counts,从而触发UI更新。

但是,您的服务器也会执行该方法,这会导致发布中没有任何更改,因此Counts中的新文档不会发送到客户端,而是将其隐藏回来。这会产生您观察到的闪烁。

现在,当您从Counts 删除文档时,我们可以假设您将其从Counts集合中删除,然后更新发布光标,这就是为什么即使发布查询选择器未更改,您的UI也能正确反映删除。

最后,当您刷新页面时,您的发布代码将在Projects集合中使用最新版本的文档进行重新评估,从而生成正确的查询选择器,因此,您的新光标现在包含Counts中新添加的文档。

然后,为了解决您的问题,您应该尝试使用反应联接或发布复合包。

E.g。见https://stackoverflow.com/a/32920733/5108796Meteor.publish: publish collection which depends on other collection