gpt4 book ai didi

javascript - Node.js 一直在本地主机上挂起/加载

转载 作者:行者123 更新时间:2023-11-30 05:40:07 31 4
gpt4 key购买 nike

我正在学习这个初学者 node.js 教程 ( http://debuggable.com/posts/understanding-node-js:4bd98440-45e4-4a9a-8ef7-0f7ecbdd56cb ),我刚刚使用这段代码创建了我的第一个服务器:

var http = require("http")

http.createServer(

function(request, response){

response.writeHead(200, {"Content-Type":"text/plain"})
response.write("hello world")
response.end

}


).listen(3333)

这很好用,但是当我转到 url localhost:3333/时,我看到“hello world”这个词非常短暂,然后它就消失了。

观看此藤蔓以获取快速视频:https://vine.co/v/MBJrpBEQvLX

有什么想法吗?

最佳答案

将你的 Hello World 放在 response#end()。我还建议您阅读 NodeJS API

http.createServer(function (req, response) {
response.writeHead(200, {'Content-Type': 'text/plain'});
response.end('Hello World\n');
}).listen(3333);

关于javascript - Node.js 一直在本地主机上挂起/加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21296034/

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