私のアプリケーションには、フィールドが Meteor.Collections であるオブジェクトがあり、そのうちのいくつかはまだサーバーに保存されていません。例えば:
var tables = {};
tables["existent"] = new Meteor.Collection("existent"); // existent on server
tables["nonexistent"] = new Meteor.Collection(null); // nonexistent on server
コレクションがサーバーにも存在するかどうかを確認する必要があります。各コレクションにフラグを付ける以外に、それを確認する方法はありますか?