Version number
node v6.6.0
"mongoose": "^4.7.5",
MongoDB shell version v3.4.0
#开启调试模式
var mongoose = require('mongoose').set('debug', true);;
router.get('/test', function(req, res, next){
var conditions = {"Prodects.id": "2"},
update = {'$inc': {"Prodects.$.price": 1}},
options = {upsert:true};
CartModel.update(conditions, update, options, function(err) {
});
});
The terminal shows that the data of the second parameter is empty, but declares an object
hotnode node process restarted
{ '$inc': { 'Prodects.$.price': 1 } }
Mongoose: carts.update({ 'Prodects.id': '2' }, { '$inc': {}, '$setOnInsert': { __v: 0 } }, { upsert: true })
So that the data in the database cannot be updated
A summary of problems encountered by Mongoose
Print results
The following methods are available
Mongoose’s documentation is a bit too concise, so there are many usage problems.
I hope everyone can work together to compile some good Chinese documents for Mongoose.
Love MongoDB! Have Fun!