node.js中的http.response.end方法使用说明
时间:2020-10-12 19:23:25|栏目:NodeJS|点击: 次
方法说明:
结束响应,告诉客户端所有消息已经发送。当所有要返回的内容发送完毕时,该函数必须被调用一次。
如何不调用该函数,客户端将永远处于等待状态。
语法:
复制代码 代码如下:
response.end([data], [encoding])
接收参数:
data end()执行完毕后要输出的字符,如果指定了 data 的值,那就意味着在执行完 response.end() 之后,会接着执行一条 response.write(data , encoding);
encoding 对应data的字符编码
例子:
复制代码 代码如下:
var http = require('http');
http.createServer(function(req, res){
res.writeHead(200, {'Content-type' : 'text/html'});
res.write('<h1>Node.js</h1>');
res.end('<p>Hello World</p>');
}).listen(3000);
栏 目:NodeJS
下一篇:Node.js的包详细介绍
本文标题:node.js中的http.response.end方法使用说明
本文地址:http://www.codeinn.net/misctech/10479.html