From 81b286c5bb5658175762bf701bbb282d4837f3f2 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Tue, 17 Sep 2024 22:52:43 +0900 Subject: [PATCH] =?UTF-8?q?2024/07/24=20=E6=99=82=E7=82=B9=E3=81=AE?= =?UTF-8?q?=E8=8B=B1=E8=AA=9E=E7=89=88=E3=81=AB=E5=9F=BA=E3=81=A5=E3=81=8D?= =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- files/ja/web/api/response/clone/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/ja/web/api/response/clone/index.md b/files/ja/web/api/response/clone/index.md index fd17e7d0cf74c5..92dad2c60466bd 100644 --- a/files/ja/web/api/response/clone/index.md +++ b/files/ja/web/api/response/clone/index.md @@ -3,7 +3,7 @@ title: "Response: clone() メソッド" short-title: clone() slug: Web/API/Response/clone l10n: - sourceCommit: 381c51574a3e6a07ee09c63493452440f046038d + sourceCommit: 58ad1df59f2ffb9ecab4e27fe1bdf1eb5a55f89b --- {{APIRef("Fetch API")}} @@ -35,7 +35,7 @@ clone() ## 例 [Fetch Response clone の例](https://github.com/mdn/dom-examples/blob/main/fetch/fetch-response-clone/index.html)([Fetch Response clone のライブ版](https://mdn.github.io/dom-examples/fetch/fetch-response-clone/) を参照)では、 {{domxref("Request.Request","Request()")}} コンストラクターで新しい {{domxref("Request")}} オブジェクトを作成し、 JPG のパスを渡します。 -そして {{domxref("fetch()")}} を使用してこのリクエストを読み込みます。 +そして {{domxref("Window/fetch", "fetch()")}} を使用してこのリクエストを読み込みます。 フェッチが正常に解決されると、それを複製し、2 つの {{domxref("Response.blob")}} 呼び出しを使用して両方のレスポンスから blob を抽出し、{{domxref("URL.createObjectURL_static", "URL.createObjectURL()")}} を使用して blob からオブジェクト URL を作成し、それらを 2 つの別々の {{htmlelement("img")}} 要素で表示します。 ```js