Mongoose Not Saving Data

后端 未结 6 2147
有刺的猬
有刺的猬 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条回答
  •  盖世英雄少女心
    2021-01-14 02:17

    If you are using a manual tool like Postman to test your app, you must also put quotes around the key names in the body of your request, like {"key": "some string"}.

    If you just put {key: "some string"} then the whole key/value pair is ignored when the document is saved to the database.

提交回复
热议问题