Mongoose variable key name

后端 未结 4 1895
眼角桃花
眼角桃花 2020-12-19 05:07

I have a mongo object and wish to access it via mongoose for my web app. The schema I\'ve defined has an Object storing user ids and a

4条回答
  •  萌比男神i
    2020-12-19 05:29

    You'll be better off if you avoid dynamic keys in your schema and go with your second idea of:

    user_info: [{sessionid: String, value: String}]
    

    You can use the $ positional operator to update individual user_info array elements by sessionid.

提交回复
热议问题