Meteor.publish('get',function(){
return clases.find();
});
Meteor.subscribe('get');
获取我的公告的文件
var clases1=clases.find();
_.forEach(clases1, function(claseaux){
claseaux2.name
});
我的集合类有一个名为name的属性,但我无法像clasea.name
答案 0 :(得分:1)
Collection.find
返回一个MiniMongo游标,而不是JS数组。
在订阅准备就绪后,一旦初始文档集发送到客户端,您可以使用Cursor.forEach
迭代游标:
Meteor.subscribe("get", function(){
clases.find().forEach(function(claseaux){
console.log(claseaux.name);
});
});