writeHead是指什么?

时间:2014-12-25 01:19:44

标签: javascript node.js

查看用nodejs编写的GroupMe bot模板,我经常遇到以下函数调用:res.writeHead(200);。 { - 1}}做什么 - 通常 - 做什么?它是“写标题”的缩写吗?

2 个答案:

答案 0 :(得分:0)

是 - 它会写入响应标头,包括状态行。特别是writeHead(200),会发送200 OK状态代码和默认标题。

答案 1 :(得分:0)

response.writeHead(statusCode,[reasonPhrase],[headers])# 向请求发送响应标头。状态代码是一个3位HTTP状态代码,如404.最后一个参数headers是响应头。可选地,可以将人类可读的reasonPhrase作为第二个参数。

示例:

var body = 'hello world';

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