blob: 6f18f681d8673ceb9d5443a9b7838b63b6bc7c9a (
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
|
---
title: Response.useFinalURL
slug: Web/API/Response/useFinalURL
tags:
- API
- Experimental
- Fetch
- Obsolete
- Property
- Reference
- Response
- useFinalURL
translation_of: Web/API/Response/useFinalURL
---
<div>{{APIRef("Fetch")}}{{obsolete_header}}</div>
<p>{{domxref("Response")}} インターフェイスの <strong><code>useFinalURL</code></strong> プロパティには、これが response の最終URLかどうかを示すbook値が含まれています。</p>
<div class="note">
<p>このプロパティは <a href="/en-US/docs/Web/API/ServiceWorker_API">ServiceWorkers</a> にのみに適用されます。他のコンテキストの場合、 <code>undefined</code> を返します。</p>
</div>
<h2 id="構文">構文</h2>
<pre class="syntaxbox notranslate">var <var>isfinalURL</var> = <var>Response</var>.useFinalURL;</pre>
<h3 id="値">値</h3>
<p>URLがリダイレクトでなく最終的なものかどうかを示す {{domxref("Boolean")}}</p>
<h2 id="例">例</h2>
<p>ページ <code>index.html</code> にあるスクリプトで考えてみます:</p>
<pre class="brush: js notranslate">fetch('/test').then((r) => console.log(r.url))</pre>
<p><code>test.html</code> は service worker <code>sw.js</code> によって制御されています:</p>
<pre class="brush: js notranslate">onfetch = (e) => {
e.respondWith(fetch('/page2').then((r) => {
r.usefinalURL = true;
return r;
})
}</pre>
<p><code>usefinalURL</code> を設定すると、 response のURLが要求のURLに設定されないため、出力は <code>index.html</code> の <code>/test</code> ではなく <code>/page2</code> になります。</p>
<h2 id="ブラウザーの互換性">ブラウザーの互換性</h2>
<p>{{Compat("api.Response.useFinalURL")}}</p>
<h2 id="関連項目">関連項目</h2>
<ul>
<li><a href="/en-US/docs/Web/API/ServiceWorker_API">ServiceWorker API</a></li>
<li><a href="/en-US/docs/Web/HTTP/Access_control_CORS">HTTP access control (CORS)</a></li>
<li><a href="/en-US/docs/Web/HTTP">HTTP</a></li>
</ul>
|