1
此流星客戶端代碼應該將所有文檔從一個集合插入另一個集合,但ToCollection.find({}).count()
返回0
。任何想法如何解決這個問題?未能將文檔插入本地集合
//client/lib.js
toCollection = new Mongo.Collection('null');
Meteor.subscribe('fromCollection'); //<------FromCollection has many documents
FromCollection.find({}).forEach((doc) => {
toCollection.insert(doc); //<------but nothing was inserted
});
看看http://stackoverflow.com/questions/16159533/meteors-collection-cursor-foreach-not-working – Gemmi
1.爲什麼你要提供字符串「null」?你是不是指'null'? 2.在插入文檔之前,您需要等待訂閱準備就緒。 – MasterAM
@MasterAM我不知道是否需要null。我在文檔中閱讀以使其成爲本地文檔,但是我在Discover Myteor上閱讀了本地手段在本地範圍中定義的內容,所以我很困惑。 –