插入&使用 mongoose 集合保存

发布于 2024-12-01 22:06:05 字数 322 浏览 0 评论 0原文

我正在尝试使用 Mongoose 将新记录插入到我的 MongoDB 中。我有以下咖啡脚本,迭代 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()

代码运行并且没有抛出错误。但是,我的收藏没有更新。
有什么想法吗?

谢谢, 伊戈尔

I am trying to insert new records into my MongoDB using Mongoose. I have the following coffeescript, iterating over an array of 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()

The code runs and no errors are thrown. However, my collection is not updated.
Any ideas?

Thanks,
Igor

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空气里的味道 2024-12-08 22:06:05

我解决了我的问题:这是一个连接问题。该代码实际上有效,我只需从不同的服务器运行它即可。

I resolved my issue: it was a connection problem. The code in fact works, I just had to run it from a different server.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文