mongodb 无法访问来自服务器expressjs的响应

ffscu2ro  于 2023-06-29  发布在  Go
关注(0)|答案(1)|浏览(142)

当我点击发送到服务器的按钮时,服务器会响应我,但我不能在Chrome控制台中显示它,我只能在网络标签中看到响应。
客户:

const Login = async (e) => {
e.preventDefault();
await axios
  .post("http://localhost:5000/login", { userLogin })
  .then((res) => {
    console.log(res);
  });

};
服务器:

app.post("/login", (req, res) => {
  const { email, password } = req.body.userLogin;
  User.findOne({ username: email }).then((user) => {
    user.password == password
      ? res.json("Login successfully")
      : res.json("Your password or username is wrong");
  });
});

网络标签:
enter image description here
请大家帮帮忙:)

相关问题