blob: 8ed218f4a472979b59881576a70988eb849dfc4d (
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
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
|
---
title: Cache.add()
slug: Web/API/Cache/add
tags:
- API
- Cache
- Experimental
- Method
- Reference
- Service Workers
- ServiceWorker
translation_of: Web/API/Cache/add
---
<p>{{APIRef("Service Workers API")}}</p>
<p><span class="seoSummary">{{domxref("Cache")}} インターフェイスの <strong><code>add()</code></strong> メソッドは、URL を受け取り、取得して、指定されたキャッシュに結果のレスポンスオブジェクトを追加します。</span> <code>add()</code> メソッドは、機能的に次の例と同じです。</p>
<pre class="brush: js">fetch(url).then(function(response) {
if (!response.ok) {
throw new TypeError('bad response status');
}
return cache.put(url, response);
})</pre>
<p>より複雑な操作では、 {{domxref("Cache.put","Cache.put()")}} を直接使用する必要があります。</p>
<div class="note">
<p><strong>メモ</strong>: <code>add()</code> は、リクエストにマッチする、前にキャッシュに保存されたキー/値の組を上書きます。</p>
</div>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="sytaxbox"><em>cache</em>.add(<em>request</em>).then(function() {
// リクエストはすでに cahce に追加されている。
});
</pre>
<h3 id="Parameters" name="Parameters">引数</h3>
<dl>
<dt>request</dt>
<dd>キャッシュに加えるリクエスト。 {{domxref("Request")}} オブジェクトか URL を指定できる。</dd>
</dl>
<h3 id="Return_value" name="Return_value">返値</h3>
<p><code>undefined</code> で解決する {{jsxref("Promise")}}。</p>
<h3 id="Exceptions" name="Exceptions">例外</h3>
<table class="standard-table">
<thead>
<tr>
<th scope="col"><strong>例外</strong></th>
<th scope="col"><strong>発生条件</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td><code>TypeError</code></td>
<td>
<p>URL スキームが <code>http</code> や <code>https</code> ではありません。</p>
<p>レスポンスステータスが200番台(つまり、成功レスポンス)ではありません。これはリクエストが成功を返さない場合や、リクエストがオリジン間の CORS ではないリクエスト (<em>cross-origin no-cors</em> request) の場合も発生します (この場合、ステータスが常に 0 で報告されます)。</p>
</td>
</tr>
</tbody>
</table>
<h2 id="Examples" name="Examples">例</h2>
<p>このコードブロックは、{{domxref("InstallEvent")}} が発火するのを待ってから、アプリにインストールプロセスを処理するために、{{domxref("ExtendableEvent.waitUntil","waitUntil")}} を実行します。この処理は、新しい cache を作成するための {{domxref("CacheStorage.open")}} の呼び出しと、資産を追加するための {{domxref("Cache.add")}} の使用で構成されています。</p>
<pre class="brush: js">this.addEventListener('install', function(event) {
event.waitUntil(
caches.open('v1').then(function(cache) {
return cache.add('/sw-test/index.html');
})
);
});
</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('Service Workers', '#dom-cache-add', 'Cache: add')}}</td>
<td>{{Spec2('Service Workers')}}</td>
<td>初回定義</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2>
<div>
<p>{{Compat("api.Cache.add")}}</p>
</div>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li><a href="/ja/docs/Web/API/Service_Worker_API/Using_Service_Workers">サービスワーカーの使用</a></li>
<li>{{domxref("Cache")}}</li>
<li>{{domxref("WorkerGlobalScope.caches")}}</li>
</ul>
|