Error: Request failed with status code 404, React, Axios

Error: Request failed with status code 404, React, Axios

我已经构建了一个我希望能够发送电子邮件的表单,为此我尝试遵循这个 youtube 教程:https://www.youtube.com/watch?v=_3-By9QfFa0

然而,我 运行 遇到了一个问题,在尝试提交表单时,我的控制台 Web 浏览器中出现了问题标题中的错误。我意识到这个问题可能与某处的其中一条路线有关,但我无法弄清楚(除非它完全不同)。

schoolForm.js

const handleSubmit = async(e) => {
e.preventDefault();
try { //I also tried using only: "/send_mail" here like I have in server.js but it didnt work
  await axios.post("http://localhost:3000/send_mail", {
    name
  });
}
catch (error) {
  console.log(error);
  }
}

server.js

const express = require("express");
const app = express();
require("dotenv").config();
const bodyParser = require("body-parser");
const cors = require("cors");
const nodemailer = require("nodemailer");

app.use(bodyParser.urlencoded({extended: true}));
app.use(bodyParser.json());

app.use(cors());

app.post("/send_mail", cors(), async (req, res) => {
  let {text} = req.body;
  const transport = nodemailer.createTransport({
    host: "smtp-mail.outlook.com",
    port: 587,
    auth: {
      user: "someone@hotmail.com",
      pass: "password"
    },
    tls: {
      rejectUnauthorized: false
    }
  });

 await transport.sendMail({
    from: "someone@hotmail.com",
    to: "someone@hotmail.com",
    subject: "subject",
    html: `<p>${text}</p>`
  })

});

app.listen(4000, () => {
  console.log("Server is listening on port 4000");
});

编辑:我在浏览器中得到的错误:

有没有人可以帮我解决这个问题?将不胜感激!

您的服务器正在侦听端口 4000。 // server.js

app.listen(4000, () => {
  console.log("Server is listening on port 4000");
});

你应该使用下面的 URL 来调用 Axios。 // schoolForm.js

await axios.post("http://localhost:4000/send_mail", {    // use port 4000 not 3000
    name
});

您已将服务器设置为侦听端口 4000,但您的 axios 请求是针对端口 3000。 确保将请求发送到正确的端口:

await axios.post("http://localhost:4000/send_mail", {
    name
  });

另请注意 body-parser 已弃用,您应该使用 express 内置中间件。所以而不是:

app.use(bodyParser.urlencoded({extended: true}));
app.use(bodyParser.json());

你应该有:

app.use(express.urlencoded({extended: true}));
app.use(express.json());

您可以删除 body-parser 依赖项。

您可以阅读 here 以了解有关 express 内置中间件及其可选属性的更多信息。

编辑:

它不起作用的原因是因为 body 是由中间件本身创建的对象。因此 req.bodyundefined 因为 body 对象不存在