假設我有一個Collection
叫做Tasks
其中有幾個任務。
我調用一個方法將任務數組返回給用戶,但由於某種原因它不返回任何內容。流星方法不起作用
下面是一個例子代碼:
if (Meteor.isClient) {
// This code only runs on the client
Template.body.helpers({
tasks: function() {
// Show newest tasks first
Meteor.call("getTasks", function(error, result) {
return result; // Doesn't do anything..
});
}
});
}
Meteor.methods({
getTasks: function() {
return Tasks.find({}, {sort: {createdAt: -1}});
}
});
任何想法,爲什麼當我調用該方法不返回任何東西?
[如何在模板助手中使用Meteor方法]可能的副本(http://stackoverflow.com/questions/22147813/how-to-use-meteor-methods-inside-of-a-template-helper ) – 2015-02-06 04:40:16