在 Node.js Mongoose 中,我想更新每个字段......我该怎么做?

发布于 2024-11-04 04:18:20 字数 218 浏览 1 评论 0原文

User.find({},function(err,docs){ 
            foreach(docs as d){
                d.name="apple";
                d.save();
            };
        }); 

这不行!我收到一些“唯一标识符”错误。有人可以帮我解决这个问题吗?

User.find({},function(err,docs){ 
            foreach(docs as d){
                d.name="apple";
                d.save();
            };
        }); 

This doesn't work! I get some "unique identifier" error. Can someone fix this for me?

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

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

发布评论

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

评论(2

心清如水 2024-11-11 04:18:20

我认为您错误地使用了 foreach 。尝试用以下内容替换回调的内容:

docs.forEach(function(elem, index, array) {
    elem.name = "apple";
    elem.save();
});

查看 MDC 以获取有关

I think you're using foreach incorrectly. Try replacing the contents of your callback with this:

docs.forEach(function(elem, index, array) {
    elem.name = "apple";
    elem.save();
});

Check out the MDC for more information on foreach.

姜生凉生 2024-11-11 04:18:20

d 是否有唯一的索引集?如果是这样,您将无法为多个实例设置相同的内容。

Does d have a unique index set? If so you will be unable to set the same thing for multiple instances.

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