Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
通常您只能从本地删除单个记录Meteor.Collection。
Meteor.Collection
一个简单的解决方案是:
var clean = function(collection) { if(collection) { // clean items _.each(collection.find().fetch(), function(item){ collection.remove({_id: item._id}); }); } }