Mongoose post find () always returns an empty array

data can be found using get find

but post always returns an empty array

router.post("/login", function (req, res) {
  let params = {
      userName: req.body.userName,
      userPwd: req.body.userPwd
  }
  User.find(params, function(err, doc) {
      console.log(doc); //[]
      if (err) {
         // ...
      } else if (doc) {
          res.cookie("userId", doc.userId, {
              path: "/",
              maxAge: 1000 * 60 * 60
          });
          res.json({
              status: "200",
              msg: "",
              result: {
                  name: doc.name
              }
          })
      } else {
         //...
      }
  })
})
Jul.21,2021
Menu