MONGODB mongoose更新node.js中的嵌入文档

发布于 2024-12-09 06:15:15 字数 808 浏览 1 评论 0原文

我的主文档中有一个嵌入的图像文档,我可以按如下方式更新它。每次更新时,它只是覆盖现有图像,而不将其添加到现有图像中。我尝试通过“{images.push:image}”,但这不起作用。语法是什么?我不确定我是否能够解释这个问题。如果没有,请告诉我是否需要在此处添加更多信息。

var image = {
                    img     : new_file_name,
                    orig_img_name   : files.source.filename,
                    caption : fields.message,
                    upload_date : new Date()
                };

RentModel.update({'facebook_id':fb_id, 'prop_location.lat':lat, 'prop_location.lng':lng},   {'images':image}, function(err, docs){
                        if(err) {
                            console.log("Error during friends update");
                            throw err;
                        }
                        console.log('image updated to database', new_file_name);
                    });

I have an embedded image document in my main document and I am able to update it as follows. Everytime it updates, it just overrides the existing image and does not add it to the existing images.. I tried by "{images.push: image}", but that does not work. what is the syntax ? I am not sure if i am able to explain the problem. if not, please let me know if i need to add more info here.

var image = {
                    img     : new_file_name,
                    orig_img_name   : files.source.filename,
                    caption : fields.message,
                    upload_date : new Date()
                };

RentModel.update({'facebook_id':fb_id, 'prop_location.lat':lat, 'prop_location.lng':lng},   {'images':image}, function(err, docs){
                        if(err) {
                            console.log("Error during friends update");
                            throw err;
                        }
                        console.log('image updated to database', new_file_name);
                    });

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

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

发布评论

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

评论(1

对你再特殊 2024-12-16 06:15:15

首先尝试 find() 嵌入文档,然后将 image 添加到数组中。

RentModel.find({'facebook_id':fb_id, 'prop_location.lat':lat, 'prop_location.lng':lng}, function (err, item) {
    if (err) //throw ...
    if (item) {
      if (item.images && item.images.length) {
          item.images.push(image);
      }
      else {
          item.images = [image];
      }

      // save changes
      item.save(function (err) {
         if (!err) {
             // done ...
         }
      });
    }
}); 

try to find() the embedded document first and then add the image to the array.

RentModel.find({'facebook_id':fb_id, 'prop_location.lat':lat, 'prop_location.lng':lng}, function (err, item) {
    if (err) //throw ...
    if (item) {
      if (item.images && item.images.length) {
          item.images.push(image);
      }
      else {
          item.images = [image];
      }

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