Mongoose Not Saving Data

后端 未结 6 2133
有刺的猬
有刺的猬 2021-01-14 01:50

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

6条回答
  •  萌比男神i
    2021-01-14 02:02

    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...

    Baffling!

提交回复
热议问题