Response: url プロパティ
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since March 2017.
url
は Response
インターフェイスの読み取り専用プロパティで、このレスポンスの URL を保持します。
url
プロパティの値は、あらゆるリダイレクトの後に得られる最終的な URL になります。
値
文字列です。
例
Fetch Response の例 (Fetch Response のライブ版 を参照)では、新しい Request
オブジェクトを、 Request()
コンストラクターを使用して作成し、 JPG のパスを渡します。次に fetch()
を使用してこのリクエストをフェッチし、 Response.blob
を使用してリクエストから blob を抽出し、 URL.createObjectURL()
を使用してオブジェクト URL を作成し、これを <img>
に表示します。
なお、 fetch()
ブロックの先頭で、レスポンスの url
値をコンソールにログ出力していることに注意してください。
js
const myImage = document.querySelector("img");
const myRequest = new Request("flowers.jpg");
fetch(myRequest)
.then((response) => {
console.log("response.url =", response.url); // response.url = https://mdn.github.io/dom-examples/fetch/fetch-response/flowers.jpg
return response.blob();
})
.then((myBlob) => {
const objectURL = URL.createObjectURL(myBlob);
myImage.src = objectURL;
});
仕様書
Specification |
---|
Fetch Standard # ref-for-dom-response-url① |
ブラウザーの互換性
BCD tables only load in the browser