aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/response/blob/index.html
blob: 4709a8d364be3402b88d7a78fd3242fd3d871587 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
---
title: Response.blob()
slug: Web/API/Response/blob
tags:
  - API
  - Blob
  - Fetch
  - Method
  - Reference
  - Response
browser-compat: api.Response.blob
translation_of: Web/API/Response/blob
original_slug: Web/API/Body/blob
---
<div>{{APIRef("Fetch")}}</div>

<p><strong><code>blob()</code></strong>{{domxref("Response")}} インターフェイスのメソッドで、 {{domxref("Response")}} ストリームを取得して完全に読み込みます。 {{domxref("Blob")}} で解決するプロミスを返します。</span></p>

<h2 id="Syntax">構文</h2>

<pre class="brush: js"><em>response</em>.blob().then(function(<em>myBlob</em>) {
  // do something with myBlob
});</pre>

<h3 id="Parameters">引数</h3>

<p>なし。</p>

<div class="note"><strong>注:</strong> {{domxref("Response")}}{{domxref("Response.type")}}<code>"opaque"</code> の場合、結果の {{domxref("Blob")}}{{domxref("Blob.size")}}<code>0</code>{{domxref("Blob.type")}} は空文字列 <code>""</code> になり、{{domxref("URL.createObjectURL")}} のようなメソッドでは<em>役に立たなく</em>なります。</div>

<h3 id="Return_value">返値</h3>

<p>{{domxref("Blob")}} で解決するプロミスです。</p>

<h2 id="Example"></h2>

<p><a href="https://github.com/mdn/fetch-examples/tree/master/fetch-request">fetch request の例</a> (<a href="https://mdn.github.io/fetch-examples/fetch-request/">fetch request をライブで</a>実行) では、{{domxref("Request.Request","Request()")}} コンストラクターを使用して新しいリクエストを作成し、それを使用して JPG を読み取ります。読み取りが成功したら、<code>blob()</code> を使用してレスポンスから {{domxref("Blob")}} を読み取り、それを {{domxref("URL.createObjectURL")}} を使用してオブジェクト URL に入れ、その URL を {{htmlelement("img")}} 要素のソースとして設定して画像を表示します。</p>

<pre class="brush: js">var myImage = document.querySelector('img');

var myRequest = new Request('flowers.jpg');

fetch(myRequest)
.then(response =&gt; response.blob())
.then(function(myBlob) {
  var objectURL = URL.createObjectURL(myBlob);
  myImage.src = objectURL;
});
</pre>

<h2 id="Specifications">仕様書</h2>

{{Specifications}}

<h2 id="Browser_compatibility">ブラウザーの互換性</h2>

<p>{{Compat}}</p>

<h2 id="See_also">関連情報</h2>

<ul>
 <li><a href="/ja/docs/Web/API/Service_Worker_API">ServiceWorker API</a></li>
 <li><a href="/ja/docs/Web/HTTP/CORS">HTTP アクセス制御 (CORS)</a></li>
 <li><a href="/ja/docs/Web/HTTP">HTTP</a></li>
</ul>