I am having trouble with a simple query on my database. Following this tutorial: https://scotch.io/tutorials/build-a-restful-api-using-node-and-express-4 when Model.find() i
Exact same thing happened to me...
First two POSTs succeeded but did not post the data I was sending:
var p = new Post(); p.result = 'hello-world'; p.save(function (err) {});
Turned on debug mode: mongoose.set('debug', true); and next POST the field was saved...
mongoose.set('debug', true);
Baffling!