标签: meteor
在服务器端创建自己的Meteor.Collection API实现的正确方法是什么。我的集合应该具有meteor.collection的所有功能+我自己的方法。它也必须是反应性的。
我可以像这样使用我的自定义集合:
Posts = new Meteor.myCollection("posts"); Meteor.publish("posts", function() { return Posts.find(); });
我怎样才能实现这一点。