Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I use '$set' on embedded document when use variable as filed name in MongoDB?

I want to use '$set' to update an embedded document, but the field is a variable.

Say I have a document like:

{'_id': ObjectID,
 'people': {
     'A': {'age': 20}
 }
}

Now I want to add a new person to people. I can use $set: {'people.B':{'age': 25}, but what if the name(instead B) is a variable?

I am using Node.js 5.1 and 'mongodb' driver.

like image 598
Brick Yang Avatar asked Dec 13 '25 20:12

Brick Yang


1 Answers

You need to build your query dynamically using the [] operator.

var b = 'B';
var update = {};
update['people.' + b] = { 'age': 25 };
db.collection.update({}, { '$set': update })
like image 185
styvane Avatar answered Dec 15 '25 13:12

styvane



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!