我想使用mongoose
在mongodb的列中包含表达式models.item.update({
col1: {$gt: 1, $lt: 20}
}, {
col1: // I don't know how to set 'col1 + 1' here
});
我该怎么做?
答案 0 :(得分:4)
答案 1 :(得分:3)
要使用col1
增加1
字段,您可以使用$inc运算符:
models.item.update(
{ col1: {$gt: 1, $lt: 20} },
{ $inc : { $col1 : 1 } }
);