res.type(type)
Sets the Content-Type
HTTP header to the MIME type as determined by mime.lookup() for the specified type
. If type
contains the “/” character, then it sets the Content-Type
to type
.
1 2 3 4 5 | 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: |
Please login to continue.