Firefox Tomorrow

web api instance property

Request: method property

View on MDN ↗

Available in workers

The method read-only property of the Request interface contains the request’s method (GET, POST, etc.)

Value

A String indicating the method of the request.

Examples

In the following snippet, we create a new request using the Request() constructor (for an image file in the same directory as the script), then save the method of the request in a variable:

const myRequest = new Request("flowers.jpg");
const myMethod = myRequest.method; // GET

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also