MDN Web Docs

Value

The value that was passed as the options.integrity argument when constructing the Request.

If an integrity has not been specified, the property returns ''.

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 reads the request's integrity. Because the request was created without a specific integrity, the property returns an empty string.

js

const myRequest = new Request("flowers.jpg");
console.log(myRequest.integrity); // ""

In the example below, the request was created with a specific integrity value, so the property returns that value. Note that there's no validation of the integrity value; the property returns exactly what was passed in.

js

const myRequest = new Request("flowers.jpg", {
  integrity: "sha256-abc123",
});
console.log(myRequest.integrity); // "sha256-abc123"

Specifications

Specification
Fetch
# ref-for-dom-request-integrity②

Browser compatibility

See also

Help improve MDN

Yes No

Learn how to contribute

This page was last modified on by MDN contributors.

Read the original on developer.mozilla.org ↗