gpt4 book ai didi

node.js - 在 Hello World 示例中感到困惑,Node.JS 方式

转载 作者:太空宇宙 更新时间:2023-11-03 22:55:34 24 4
gpt4 key购买 nike

这是大多数 Node.JS 书籍中给出的典型 hello world 示例 -

var http = require('http');
http.createServer(function (req, res) {
res.**writeHead**(200, {'Content-Type': 'text/plain'});
res.**end**('Hello World\n');
}).listen(8124, "127.0.0.1");

我可以理解,通过“require”html功能已被放入var http中。因此 .createserver 函数将写入该模块中,我们将匿名函数作为回调的参数传递给该模块。但是“writehead”和“end”在哪里定义?到底是什么?

最佳答案

关于node.js - 在 Hello World 示例中感到困惑,Node.JS 方式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16425356/

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