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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
|
---
title: Request
slug: Web/API/Request
tags:
- API
- Fetch
- Fetch API
- Interface
- Networking
- Reference
- request
translation_of: Web/API/Request
---
<div>{{APIRef("Fetch API")}}</div>
<p><a href="/ja/docs/Web/API/Fetch_API">Fetch API</a> の <strong><code>Request</code></strong> インターフェイスは、リソースのリクエストを表します。</p>
<p>新しい <code>Request</code> オブジェクトは {{domxref("Request.Request()")}} コンストラクターを用いて生成することができますが、 <code>Request</code> オブジェクトは他の API 操作、例えばサービスワーカーの {{domxref("FetchEvent.request")}} などの結果として返されたものに遭遇することの方が多いでしょう。</p>
<h2 id="Constructor" name="Constructor">コンストラクター</h2>
<dl>
<dt>{{domxref("Request.Request","Request()")}}</dt>
<dd>新しい <code>Request</code> オブジェクトを生成します。</dd>
</dl>
<h2 id="Properties" name="Properties">プロパティ</h2>
<dl>
<dt>{{domxref("Request.cache")}} {{readonlyInline}}</dt>
<dd>リクエストのキャッシュモード (<code>default</code>, <code>reload</code>, <code>no-cache</code> など) が入ります。</dd>
<dt>{{domxref("Request.context")}} {{readonlyInline}} {{deprecated_inline()}}</dt>
<dd>リクエストのコンテキスト (<code>audio</code>, <code>image</code>, <code>iframe</code> など) が入ります。</dd>
<dt>{{domxref("Request.credentials")}} {{readonlyInline}}</dt>
<dd>リクエストの認証情報 (<code>omit</code>, <code>same-origin</code>, <code>include</code> など) が入ります。既定値は <code>same-origin</code> です。</dd>
<dt>{{domxref("Request.destination")}} {{ReadOnlyInline}}</dt>
<dd>{{domxref("RequestDestination")}} 列挙型の文字列で、リクエストの方向を示します。これはその種類のコンテンツがリクエストされることを示す文字列です。</dd>
<dt>{{domxref("Request.headers")}} {{readonlyInline}}</dt>
<dd>リクエストに関連付けられた {{domxref("Headers")}} オブジェクトが入ります。</dd>
<dt>{{domxref("Request.integrity")}} {{readonlyInline}}</dt>
<dd>リクエストの <a href="/ja/docs/Web/Security/Subresource_Integrity">subresource integrity</a> 値 (例えば <code>sha256-BpfBw7ivV8q2jLiT13fxDYAe2tJllusRSZ273h2nFSE=</code>) が入ります。</dd>
<dt>{{domxref("Request.method")}} {{readonlyInline}}</dt>
<dd>リクエストメソッド (<code>GET</code>, <code>POST</code> など) が入ります。</dd>
<dt>{{domxref("Request.mode")}} {{readonlyInline}}</dt>
<dd>リクエストのモード ( <code>cors</code>, <code>no-cors</code>, <code>same-origin</code>, <code>navigate</code> など) が入ります。</dd>
<dt>{{domxref("Request.redirect")}} {{readonlyinline}}</dt>
<dd>リダイレクトをどう扱うかのモードが入ります。 <code>follow</code>, <code>error</code>, <code>manual</code> のいずれかです。</dd>
<dt>{{domxref("Request.referrer")}} {{readonlyInline}}</dt>
<dd>リクエストのリファラー (<code>client</code> など) が入ります。</dd>
<dt>{{domxref("Request.referrerPolicy")}} {{readonlyInline}}</dt>
<dd>リファラに関するポリシー (<code>no-referrer</code> など) が入ります。</dd>
<dt>{{domxref("Request.url")}} {{readonlyInline}}</dt>
<dd>リクエストの URL が入ります。</dd>
</dl>
<p><code>Request</code> は {{domxref("Body")}} を実装しているため、以下のプロパティを継承しています。</p>
<dl>
<dt>{{domxref("Body.body", "body")}} {{readonlyInline}}</dt>
<dd>body の中身を {{domxref("ReadableStream")}} として取り出すために使用されるシンプルなゲッターです。</dd>
<dt>{{domxref("Body.bodyUsed", "bodyUsed")}} {{readonlyInline}}</dt>
<dd>{{domxref("Boolean")}} であり、レスポンス中で本文が既に使用されたかどうかを示します。</dd>
</dl>
<h2 id="Methods" name="Methods">メソッド</h2>
<dl>
<dt>{{domxref("Request.clone()")}}</dt>
<dd>現在の <code>Request</code> オブジェクトのコピーを生成します。</dd>
</dl>
<p><code>Request</code> は {{domxref("Body")}} を実装しているため、以下のメソッドも利用できます。</p>
<dl>
<dt>{{domxref("Body.arrayBuffer()")}}</dt>
<dd>リクエスト本体を表す {{domxref("ArrayBuffer")}} で解決する Promise が返ります。</dd>
<dt>{{domxref("Body.blob()")}}</dt>
<dd>リクエスト本体を表す {{domxref("Blob")}} で解決する Promise が返ります。</dd>
<dt>{{domxref("Body.formData()")}}</dt>
<dd>リクエスト本体を表す {{domxref("FormData")}} で解決する Promise が返ります。</dd>
<dt>{{domxref("Body.json()")}}</dt>
<dd>リクエスト本体を表す {{domxref("JSON")}} で解決する Promise が返ります。</dd>
<dt>{{domxref("Body.text()")}}</dt>
<dd>リクエスト本体を表す {{domxref("USVString")}} (テキスト) で解決する Promise が返ります。</dd>
</dl>
<div class="note">
<p><strong>メモ</strong>: {{domxref("Body")}} の関数は 1 度しか呼び出せません。 2 回目以降は空の文字列または ArrayBuffer で解決します。</p>
</div>
<h2 id="Examples" name="Examples">例</h2>
<p>次のスニペットでは、<code>Request()</code> コンストラクターを使用して (スクリプトと同じディレクトリーにある画像ファイルのために) 新しい request を生成し、いくつかリクエストのプロパティ値を返しています。</p>
<pre class="brush: js">const request = new Request('https://www.mozilla.org/favicon.ico');
const URL = request.url;
const method = request.method;
const credentials = request.credentials;
</pre>
<p>このリクエストは、下記のように <code>Request</code> オブジェクトを引数として {{domxref("WindowOrWorkerGlobalScope.fetch()")}} に渡すことで読み取ることができます。</p>
<pre class="brush: js">fetch(request)
.then(response => response.blob())
.then(blob => {
image.src = URL.createObjectURL(blob);
});</pre>
<p>以下のスニペットでは、 <code>Request()</code> コンストラクターにいくつかの初期化データと本文コンテンツを付けて、本文ペイロードを必要とする API リクエストのための新しいリクエストを生成します。</p>
<pre class="brush: js">const request = new Request('https://example.com', {method: 'POST', body: '{"foo": "bar"}'});
const URL = request.url;
const method = request.method;
const credentials = request.credentials;
const bodyUsed = request.bodyUsed;
</pre>
<div class="note">
<p><strong>メモ:</strong> body の型は {{domxref("Blob")}}, {{domxref("BufferSource")}}, {{domxref("FormData")}}, {{domxref("URLSearchParams")}}, {{domxref("USVString")}} {{domxref("ReadableStream")}} のいずれかで、ペイロードにそのオブジェクトを文字列化するのに必要な JSON オブジェクトでも同様です。</p>
</div>
<p>すると <code>Request</code> オブジェクトを、例えば {{domxref("GlobalFetch.fetch()")}} 呼び出しの引数として渡すことで API リクエストを取得できて、レスポンスを取得できます。</p>
<pre class="brush: js">fetch(request)
.then(response => {
if (response.status === 200) {
return response.json();
} else {
throw new Error('Something went wrong on api server!');
}
})
.then(response => {
console.debug(response);
// ...
}).catch(error => {
console.error(error);
});</pre>
<h2 id="Specifications" name="Specifications">仕様書</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">仕様書</th>
<th scope="col">状態</th>
<th scope="col">備考</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('Fetch','#request-class','Request')}}</td>
<td>{{Spec2('Fetch')}}</td>
<td>初回定義</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div>
<p>{{Compat("api.Request")}}</p>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li><a href="/ja/docs/Web/API/ServiceWorker_API">ServiceWorker API</a></li>
<li><a href="/ja/docs/Web/HTTP/Access_control_CORS">HTTP access control (CORS)</a></li>
<li><a href="/ja/docs/Web/HTTP">HTTP</a></li>
</ul>
|