How to update a array value in Mongoose

前端 未结 3 503
既然无缘
既然无缘 2020-12-09 05:12

I want to update a array value but i am not sure about the proper method to do it ,so for i tried following method but didnt worked for me.

My model, The childre

3条回答
  •  無奈伤痛
    2020-12-09 05:20

    This will help I guess

    Employeehierarchy.findOneAndUpdate(
      { _id:employeeparent._id },
      { $set: { "childrens": employee._id }}
    )
    

提交回复
热议问题