我是JavaScript新手,對流星很新。這段代碼是否正確?我需要定義一個函數,它將採用一組值並將它們插入Meteor集合「FooterButtons」中?在JavaScript數組中應用Meteor集合插入循環
客戶端代碼
replaceCollectionContents(['NO', 'B', 'YES']);
兩個代碼
replaceCollectionContents = function (buttonsList) {
FooterButtons.remove();
for(i = 0; i < buttonsList.length; i++) {
FooterButtons.insert(buttonsList[i]);
}
};
護理髮表評論,以什麼起色,你可以做寫這個問題,以便其他可能學習如何避免寫一個附帶向下投票的問題? :) –
http://stackoverflow.com/help/mcve。你有什麼具體的嘗試,你看到什麼特定的錯誤,等等。 – Quotidian