Skip to content

Commit

Permalink
Web/API/Response/ok を更新 (#23609)
Browse files Browse the repository at this point in the history
2024/07/27 時点の英語版に基づき更新
  • Loading branch information
mfuji09 authored Sep 21, 2024
1 parent e26e9a8 commit 6ab2239
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions files/ja/web/api/response/ok/index.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
---
title: Response.ok
title: "Response: ok プロパティ"
short-title: ok
slug: Web/API/Response/ok
l10n:
sourceCommit: e0e09b1df51489867f2e74c18586d168ba5e00d1
sourceCommit: 4dec42ed700040565e8af0e14ff104054ebc20f5
---

{{APIRef("Fetch")}}
{{APIRef("Fetch API")}}

**`ok`** は {{domxref("Response")}} インターフェイスの読み取り専用プロパティで、このレスポンスが(ステータスが 200-299 で)成功したかどうかを表す論理値です。

Expand All @@ -15,7 +16,7 @@ l10n:

##

[Fetch Response の例](https://github.com/mdn/dom-examples/tree/main/fetch/fetch-response)[Fetch Response のライブ](https://mdn.github.io/dom-examples/fetch/fetch-response/) を参照)では、新しい {{domxref("Request")}} オブジェクトを、 {{domxref("Request.Request","Request()")}} コンストラクターを使用して作成し、 JPG のパスを渡します。次に {{domxref("fetch()")}} を使用してこのリクエストをフェッチし、 {{domxref("Response.blob")}} を使用してリクエストから blob を抽出し、 {{domxref("URL.createObjectURL")}} を使用してオブジェクト URL を作成し、これを {{htmlelement("img")}} に表示します。
[Fetch Response の例](https://github.com/mdn/dom-examples/tree/main/fetch/fetch-response)[Fetch Response のライブ](https://mdn.github.io/dom-examples/fetch/fetch-response/) を参照)では、新しい {{domxref("Request")}} オブジェクトを、 {{domxref("Request.Request","Request()")}} コンストラクターを使用して作成し、 JPG のパスを渡します。次に {{domxref("Window/fetch", "fetch()")}} を使用してこのリクエストをフェッチし、 {{domxref("Response.blob")}} を使用してリクエストから blob を抽出し、 {{domxref("URL.createObjectURL_static", "URL.createObjectURL()")}} を使用してオブジェクト URL を作成し、これを {{htmlelement("img")}} に表示します。

> **メモ:** `fetch()` ブロックの先頭で、レスポンスの `ok` 値をコンソールにログ出力します。
Expand Down

0 comments on commit 6ab2239

Please sign in to comment.