res.set(field [, value])
Sets the response’s HTTP header field
to value
. To set multiple fields at once, pass an object as the parameter.
1 2 3 4 5 6 7 | res.set( 'Content-Type' , 'text/plain' ); res.set({ 'Content-Type' : 'text/plain' , 'Content-Length' : '123' , 'ETag' : '12345' }); |
Aliased as res.header(field [, value])
.
Please login to continue.