gpt4 book ai didi

node.js - Nodejs 提供 1 个 api 端点和一个 html 页面

转载 作者:搜寻专家 更新时间:2023-11-01 00:11:17 24 4
gpt4 key购买 nike

这是我的问题。我从来没有在不使用 express 的情况下在 Node 中写过东西,所以我发现很难用基本的 API 创建服务器。

基本上我在网上查到的是这样的:

var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(1337, '127.0.0.1');
console.log('Server running at http://127.0.0.1:1337/');

但是我看不到如何实现/index.html 和/getData。这段代码将在树莓派上运行,这就是我不应该使用库的原因。基本上我没有多少空间。

非常感谢,

最佳答案

您需要手动检查请求中的 URL 并分别处理每种情况:

var http = require('http');
http.createServer(function (req, res) {

if(req.url == "/index.html") {
fs.readFile("index.html", function(err, text){
res.setHeader("Content-Type", "text/html");
res.end(text);
});
return;
}

if(req.url == "/getData") {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('get data\n');
return;
}

res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');

}).listen(1337, '127.0.0.1');
console.log('Server running at http://127.0.0.1:1337/');

关于node.js - Nodejs 提供 1 个 api 端点和一个 html 页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14359922/

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