node.js中的http.response.writeHead方法使用说明

时间:2014-12-14    点击:131   

方法说明:

向请求的客户端发送响应头。

该函数在一个请求内最多只能调用一次,如果不调用,则会自动生成一个响应头。

语法:

复制代码 代码如下:

response.writeHead(statusCode, [reasonPhrase], [headers])

接收参数:

statusCode              HTTP状态码,如200(请求成功),404(未找到)等。

reasonPhrase

headers                   类似关联数组的对象,表示响应头的每个属性

例子:

复制代码 代码如下:

var body = 'hello world';
response.writeHead(200, {
  'Content-Length': body.length,
  'Content-Type': 'text/plain'
});

node.js中的http.get方法使用说明
node.js中的http.createServer方法使用说明
node.js中的fs.writeFile方法使用说明
node.js中的fs.writeFile方法使用说明
node.js中的http.response.addTrailers方法使用说明
> 返回     
地址:上海市普陀区胶州路941号长久商务中心 电话: QQ:
© Copyright 2012 上海网络 Product All Rights Reserved