From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/ja/web/api/clients/get/index.html | 65 +++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 files/ja/web/api/clients/get/index.html (limited to 'files/ja/web/api/clients/get') diff --git a/files/ja/web/api/clients/get/index.html b/files/ja/web/api/clients/get/index.html new file mode 100644 index 0000000000..df31cdfc53 --- /dev/null +++ b/files/ja/web/api/clients/get/index.html @@ -0,0 +1,65 @@ +--- +title: Clients.get() +slug: Web/API/Clients/get +tags: + - API + - Clients + - Method + - Reference + - Service Workers + - get +translation_of: Web/API/Clients/get +--- +
{{APIRef("Service Workers API")}}
+ +

{{domxref("Clients")}} インターフェースの get() メソッドは、所与の id と一致するサービスワーカークライアントを取得し、{{jsxref("Promise")}} で返します。

+ +

構文

+ +
self.clients.get(id).then(function(client) {
+  // 返されたクライアントで何かをします
+});
+ +

パラメーター

+ +
+
id
+
取得するクライアントの id を表す {{domxref("DOMString")}}。
+
+ +

戻り値

+ +
+
{{domxref("Client")}} オブジェクトまたは undefined に解決される {{jsxref("Promise")}}。
+
+ +

+ +
self.clients.get(id).then(function(client) {
+  self.clients.openWindow(client.url);
+});
+ +

仕様

+ + + + + + + + + + + + + + +
仕様状態コメント
{{SpecName('Service Workers', '#dom-clients-get', 'get()')}}{{Spec2('Service Workers')}}初期定義
+ +

ブラウザーの互換性

+ +
+ + +

{{Compat("api.Clients.get")}}

+
-- cgit v1.2.3-54-g00ecf