how to update nested object of mongoose document for only provided keys

十年热恋 提交于 2021-02-18 22:41:08

问题


I am going to update some fields of mongoose document according to provided keys. For example, When we present mongoose document in json.

user: {
  address: {
    city: "city"
    country: "country"
  }
}

And update params is given like this.

address: {
   city: "city_new"
}

when I run the mongoose api like this.

let params = {
   address: {
      city: "city_new"
   }
}
User.set(param)

It replace whole address object and final result is

user: {
  address: {
    city: "city_new"
  }
}

it just replace address field, but I want to only update city field. This is desired result.

user: {
  address: {
    city: "city_new"
    country: "country"
  }
}

How to do this in mongoose?

When nested object has more complex hierarchy, how can we solve this without manually indicate field like address.city.field1.field2. ...

Thanks


回答1:


When nested object has more complex hierarchy, how can we solve this without manually indicate field like address.city.field1.field2.

As most answers intimated, you have to use the dot notation to update embedded documents and to answer your above question, use the following helper method which applies recursion to convert a given object to its dot notation representation:

function convertToDotNotation(obj, newObj={}, prefix="") {

  for(let key in obj) {
      if (typeof obj[key] === "object") {
          convertToDotNotation(obj[key], newObj, prefix + key + ".");
      } else {
          newObj[prefix + key] = obj[key];
      }
  }

  return newObj;
}


let params = {
   address: {
      city: {
         location: {
            street: "new street"
         }
      }  
   }
};

const dotNotated = convertToDotNotation(params);
console.log(JSON.stringify(dotNotated, null, 4));



回答2:


This should work:

let params = {
   "address.city": "city_new"
}
User.set(param)

In the documentation on $set you'll also find the following remark:

To specify a <field> in an embedded document or in an array, use dot notation.



来源:https://stackoverflow.com/questions/51847779/how-to-update-nested-object-of-mongoose-document-for-only-provided-keys

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!