我没有将变量设置为更新的关键,我的代码......
mongoose.model('members', Schema).update({ id: '0' }, {$push: {'this_key': 'value'}} , [], function (err, data){});
如果我使用
var this_key = 'test';
但是 this_key 不是“测试”它是“this_key”
mongoose.model('members', Schema).update({ id: '0' }, {$push: {this_key: 'value'}} , [], function (err, data){});
我需要一些值 ext POST[] 来设置变量 this_key,
如何在 mongoose、Node.js 中按变量设置键?