当我点击发送到服务器的按钮时,服务器会响应我,但我不能在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
请大家帮帮忙:)
1条答案
按热度按时间g6ll5ycj1#
可以使用
console.log(res.data);