1

这是大多数 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 函数将被写入该模块中,作为回调的参数,我们将传递一个匿名函数。但是“写头”和“结束”在哪里定义?它到底是什么?

4

1 回答 1

4

res是类ServerResponse http://nodejs.org/api/http.html#http_class_http_serverresponse的一个实例

于 2013-05-07T17:53:21.107 回答