gpt4 book ai didi

javascript - Node : How to handle the POST request without using a framework

转载 作者:行者123 更新时间:2023-12-02 23:56:12 24 4
gpt4 key购买 nike

所以在我所有的研究中,我在“Vanilla Node”中找不到任何与 GET 和 POST 相关的主题,每个人都推荐使用 Express。

但在尝试 Express 之前我想学习 Node.js 及其完整功能。

例如:

假设我有一个包含注册表单的 HTML 文件。在提交时,我将如何使用“Vanilla Node”将数据发送到数据库?

谢谢

最佳答案

您可以在 Node.js 中使用 http core-module。您可以使用 request.path 来区分端点并进行相应的处理。欲了解更多想法,请参阅 HTTP module

const http = require("http");

const server = http.createServer((req, res) => {
if (req.method === "POST") {
// For all POST REQUESTS
} else {
}
});
server.listen(3000);

关于javascript - Node : How to handle the POST request without using a framework,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55370410/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com