Response
Response class represents responses which are received by page.
Methods
allHeaders
Added in: v1.15An object with all the response HTTP headers associated with this response.
Usage
Response.allHeaders();
Returns
body
Added in: v1.8Returns the buffer with response body.
Usage
Response.body();
Returns
finished
Added in: v1.8Waits for this response to finish, returns always null
.
Usage
Response.finished();
Returns
frame
Added in: v1.8Returns the Frame that initiated this response.
Usage
Response.frame();
Returns
fromServiceWorker
Added in: v1.23Indicates whether this Response was fulfilled by a Service Worker's Fetch Handler (i.e. via FetchEvent.respondWith).
Usage
Response.fromServiceWorker();
Returns
headerValue
Added in: v1.15Returns the value of the header matching the name. The name is case insensitive. If multiple headers have the same name (except set-cookie
), they are returned as a list separated by ,
. For set-cookie
, the \n
separator is used. If no headers are found, null
is returned.
Usage
Response.headerValue(name);
Arguments
Returns
headerValues
Added in: v1.15Returns all values of the headers matching the name, for example set-cookie
. The name is case insensitive.
Usage
Response.headerValues(name);
Arguments
Returns
headers
Added in: v1.8An object with the response HTTP headers. The header names are lower-cased. Note that this method does not return security-related headers, including cookie-related ones. You can use Response.allHeaders() for complete list of headers that include cookie
information.
Usage
Response.headers();
Returns