Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set content-type when doing res.send()?

Tags:

At the end of route function, when I do something like this.

res.send(JSON.stringify({...})); 

I would like the content-type of response to be set as "text/plain", but it is "text/html". Is there way to set it explicitly? I search the document but no clue yet.

like image 328
user180574 Avatar asked Aug 02 '18 20:08

user180574


People also ask

What does Res send () do?

send() Send a string response in a format other than JSON (XML, CSV, plain text, etc.). This method is used in the underlying implementation of most of the other terminal response methods.

How do I change the content-type in Express?

The type() method in response object is used to set the type of the response. Consider the below express GET service that returns a JSON response. var express = require("express"); var app = express(); app. get('/hello',function(req,res){ res.

What is the difference between RES JSON and Res send?

res. json forces the argument to JSON. res. send will take an non-json object or non-json array and send another type.

Does Res send end the function?

send doesn't return the function, but does close the connection / end the request.


2 Answers

setHeader before sending: https://nodejs.org/api/http.html#http_response_setheader_name_value

res.setHeader('content-type', 'text/plain'); res.send(JSON.stringify({...})); 
like image 126
WilliamNHarvey Avatar answered Sep 28 '22 02:09

WilliamNHarvey


There are a few ways to achieve this, the cleanest/simplest of which is probably (assuming the use of express, based on the tag; see final answer option if not using expressjs):

res.type('txt'); res.send(JSON.stringify({...})); 

That's using res.type, which gives a number of shorthands, as well as being able to set explicit mime types, e.g. (among many others):

res.type('.html')            // => 'text/html' res.type('html')             // => 'text/html' res.type('json')             // => 'application/json' res.type('application/json') // => 'application/json' res.type('png')              // => 'image/png' res.type('mp3')              // => 'audio/mp3' 

As of this writing, this is implemented in terms of res.set, which could also be called directly:

res.set('content-type', 'text/plain'); res.send(JSON.stringify({...})); 

These are the officially documented ways of performing this functionality (except that also res.header is an alias for res.set). However, it appears that the response objects are derived from http.ServerResponse, and thus also have (and use, in the implementation) the setHeader method from that, which has the same usage as res.set, without quite all of the same functionality as res.set (some checks aren't done, etc.)... But it does get the basic job done, and so it's entirely possible one might find code in the wild that would solve your this question's goals as (especially if it's not an express application, but using the http package, instead):

res.setHeader('Content-Type', 'text/plain'); res.send(JSON.stringify({...})); 

(As a side-note: per RFC 7230 (formerly in RFC 2616), the header names are case insensitive. That said, the Content-Type capitalization is what's used in RFC 7231, which defines its meaning and usage, and is what res.type will use. That said, I've seen at least some examples of res.set being used with all-lower-case header names, so I thought I'd show that both are possible.)

like image 28
lindes Avatar answered Sep 28 '22 04:09

lindes