Mongoose更新只更新第一个文档
好吧..这很奇怪而且很烦人,所以任何帮助将不胜感激。这是我的代码:
Target.update {location_city: "New York"}, {location_country: "FUDGE!"}, {safe: true}, (err, res) ->
console.log "Updating with New York"
console.log res
console.log "Err #{err}"
没有错误,NADA。但由于某种原因,只有第一个文档得到更新。当我对同一查询运行查找时,我得到多个结果。
任何帮助将非常感激。
Okay.. this is odd and annoying, so any help would be GREATLY appreciated. Here's my code:
Target.update {location_city: "New York"}, {location_country: "FUDGE!"}, {safe: true}, (err, res) ->
console.log "Updating with New York"
console.log res
console.log "Err #{err}"
No error, NADA. BUT only the FIRST document gets updated for some reason. When I run a find on the SAME query, I get multiple results.
Any help would be AWESOMELY appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
multi
必须为true
。所以正确的查询是
multi
has to betrue
.So the correct query would be