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.
プロジェクトのフロントエンドとして流星を使用しており、バックエンドとして node.js と mongodb を使用しています。流星の値を読み取ることについてはわかりません。私を助けてください。
このコードを試してください:
Pages = new Meteor.Collection("pages"); Meteor.startup(function () { if(Pages.find().count() === 0){ var pages = JSON.parse(MY_JSON_LIST); for (page in pages) { Pages.insert(pages[page]); } } });