ऑब्जेक्ट फ़ील्ड नामों में स्ट्रिंग अक्षर के लिए वाक्यविन्यास आपको यहां काट रहा है। इसके चारों ओर जाने के लिए, एक मध्यवर्ती वस्तु बनाएं और शाब्दिक उपयोग किए बिना इसका निर्माण करें:
var this_key = 'test';
var push = {};
push[this_key] = 'value'; // here, it will use the variable
mongoose.model('members', Schema).update(
{ id: '0' }, {$push: push} , [], function (err, data){});