所以我将我的Meteor从v0.8更新到最新的1.0,我遇到的一个问题是正常模板助手停止工作,如:
这曾经有用:
Template.allCustomers.helpers({
getAllCustomers: function(filter) {
return Customers.find(filter, {sort: {registered: -1 } });
},
当被称为:
Template.allCustomers.getAllCustomers();
..但更新后它没有。所以我查了一下Template.allCustomers对象,发现通过这样调用它可以工作:
Template.allCustomers.__helpers.get("getAllCustomers")()
所以我的问题是,这是实际意图吗?好像它无用复杂。我试图搜索有关模板更改的文档但无法找到并理解:
谢谢,