我正在尝试使用Mongoose将新记录插入到我的MongoDB中。我有以下coffeescript,遍历一系列ad_units:
campaign_doc = new mongoose.Collection 'scheduled_campaigns', db
for unit in ad_units
campaign = new campaign_model unit
campaign_doc.insert campaign
campaign.save()
代码运行,不会抛出任何错误。但是,我的收藏没有更新 有什么想法吗?
谢谢, 伊戈尔
答案 0 :(得分:0)
我解决了我的问题:这是一个连接问题。实际上代码有效,我只需要从不同的服务器运行它。