gpt4 book ai didi

node.js - 简单的http服务器

转载 作者:搜寻专家 更新时间:2023-10-31 22:35:58 25 4
gpt4 key购买 nike

好吧,这可能是一个愚蠢的问题,但关于 Node ,我已经尽我所能。

我设置了一个服务器,使用我们可以在任何 Node 演示或教程中找到的代码...

var http = require('http');

var server = http.createServer(function(req, res){
console.log('connection from: ' res.socket.remoteAddress);

res.writeHead(200, ['Content-Type', 'text/plain']);
res.write('Hello ');
res.end('World');
});

server.listen('8080');

我的问题是,为什么我的服务器会针对我从浏览器发出的每个请求记录我的消息两次?

最佳答案

您的浏览器正在请求在上角的图标中使用 img。

关于node.js - 简单的http服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6973226/

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