


NodejsWhat is the difference between setHeader and writeHead? The following article will compare setHeader and writeHead and talk about their differences. I hope it will be helpful to everyone!
Today when I was studying Node
, I discovered setHeader# in
Node/http ## is very similar to writeHead. Both can set the response header. Let’s talk about it in detail!
setHeader
Parameter
response.setHeader(name, value)复制代码
- name Attribute
- value Attribute value
- Return
- http.ServerResponse
Return the response object
Function
Set a single attribute for the response header.Note
- You can only set attributes one by one
- Repeatedly setting an attribute will replace the previous setting
- Setting an attribute field name or value that contains invalid characters will cause a
- TypeError
Example
reponse.setHeader('Content-Type', 'text/html')
reponse.setHeader('Set-Cookie', ['type=ninja', 'language=javascript'])
Repeatedly set an attribute
// 返回 content-type = text/html1 reponse.setHeader('Content-Type', 'text/html') reponse.setHeader('Content-Type', 'text/html1')
Parameter
response.writeHead(statusCode, [statusMessage], [headers])
- statusCode http status code
- statusMessage status message (optional)
- headers | Property object or array (optional)
- Return
- http.ServerResponse
Return response object
has the same effect as
setHeader
- Multiple attributes can be set, setHeader can only set one
- can only be called once
- must be in
- response.end ()
Called before
Setting an attribute field name or value that contains invalid characters will cause - TypeError
# to be thrown ##Example
Because writeHead returns a ServerResponse object, we can make chain calls
const body = 'hello world'; response .writeHead(200, { 'Content-Length': Buffer.byteLength(body), 'Content-Type': 'text/plain' }) .end(body);The Content-Length here is in bytes, and Not characters. Buffer.byteLength() is used to determine the length of the text. Nodejs will not check whether Content-Length is consistent with the length of the transmitted body
Use setHeader and writeHead at the same time
// 返回 content-type = text/plain
const server = http.createServer((req, res) => {
res.setHeader('Content-Type', 'text/html');
res.setHeader('X-Foo', 'bar');
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.end('ok');
});
writeHead
has a higher priority than setHeader, and writeHead can only be called once, so when calling, first consider which headers do not change often, and then call
writeHeadIf
setHeader
writeHead merge
If this method is called, and
response has not been called yet .setHeader()
response.getHeader()) on the header does not produce the expected results. If the header needs to be populated incrementally with potential future retrieval and modification, use
response.setHeader() instead.
Summary
##setHeader can only set headers one by one, writeHead can set many at once
setHeader can be called repeatedly, writeHead can only be called once
setHeader and writeHead appear at the same time, setHeader will be merged into writeHead, and writeHead has a high priority
writeHead can set the status code and status information, setHeader cannot be set, only the header can be set
- ##For more node-related knowledge, please visit:
nodejs tutorial
!
The above is the detailed content of Briefly compare setHeader and writeHead in Node and talk about the differences.. For more information, please follow other related articles on the PHP Chinese website!

node、nvm与npm的区别:1、nodejs是项目开发时所需要的代码库,nvm是nodejs版本管理工具,npm是nodejs包管理工具;2、nodejs能够使得javascript能够脱离浏览器运行,nvm能够管理nodejs和npm的版本,npm能够管理nodejs的第三方插件。

Vercel是什么?本篇文章带大家了解一下Vercel,并介绍一下在Vercel中部署 Node 服务的方法,希望对大家有所帮助!

node怎么爬取数据?下面本篇文章给大家分享一个node爬虫实例,聊聊利用node抓取小说章节的方法,希望对大家有所帮助!

node导出模块的两种方式:1、利用exports,该方法可以通过添加属性的方式导出,并且可以导出多个成员;2、利用“module.exports”,该方法可以直接通过为“module.exports”赋值的方式导出模块,只能导出单个成员。

安装node时会自动安装npm;npm是nodejs平台默认的包管理工具,新版本的nodejs已经集成了npm,所以npm会随同nodejs一起安装,安装完成后可以利用“npm -v”命令查看是否安装成功。

node中没有包含dom和bom;bom是指浏览器对象模型,bom是指文档对象模型,而node中采用ecmascript进行编码,并且没有浏览器也没有文档,是JavaScript运行在后端的环境平台,因此node中没有包含dom和bom。

Node.js 如何实现异步资源上下文共享?下面本篇文章给大家介绍一下Node实现异步资源上下文共享的方法,聊聊异步资源上下文共享对我们来说有什么用,希望对大家有所帮助!


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download
The most popular open source editor

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.
