setHeader
Sets a single header value for implicit headers. If this header already exists in the to-be-sent headers, its value will be replaced. Use an array of strings here to send multiple headers with the same name.
response.setHeader('Content-Type', 'text/html; charset=utf-8');
Content copied to clipboard
or
response.setHeader('Set-Cookie', ['type=ninja', 'language=javascript']);
Content copied to clipboard
Attempting to set a header field name or value that contains invalid characters will result in a TypeError
being thrown.
When headers have been set with response.setHeader()
, they will be merged with any headers passed to response.writeHead()
, with the headers passed to response.writeHead()
given precedence.
// Returns content-type = text/plain
const server = http2.createServer((req, res) => {
res.setHeader('Content-Type', 'text/html; charset=utf-8');
res.setHeader('X-Foo', 'bar');
res.writeHead(200, { 'Content-Type': 'text/plain; charset=utf-8' });
res.end('ok');
});
Content copied to clipboard
Since
v8.4.0