The Wayback Machine - https://web.archive.org/web/20150927062935/https://developer.mozilla.org/ja/docs/Web/API/Clients

Join MDN and developers like you at Mozilla's View Source conference, November 2-4 in Portland, Oregon. Learn more at https://viewsourceconf.org/.

Clients

by 6 contributors:
この記事はまだ日本語に翻訳されていません。MDN の翻訳はボランティアによって行われています。是非 MDN に登録し、私たちの力になって下さい。

This is an experimental technology
Because this technology's specification has not stabilized, check the compatibility table for the proper prefixes to use in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future versions of browsers as the spec changes.

The Clients interface of the Service Workers API represents a container for a list of Client objects.

Methods

Clients.matchAll()
Gets a list of service worker clients and returns them in a Promise. Include the options parameter to return all service worker clients whose origin is the same as the associated service worker's origin. If options are not included, the method returns only the service worker clients controlled by the service worker. 
Clients.openWindow()
Opens a service worker Client in a new browser window.
Clients.claim()
Allows an active Service Worker to set itself as the active worker for a client page when the worker and the page are in the same scope. 

Examples

clients.matchAll(options).then(function(clients) {
  for(i = 0 ; i < clients.length ; i++) {
    if(clients[i] === 'index.html') {
      clients.openWindow(clients[i]);
      // or do something else involving the matching client
    }
  }
});

Specifications

Specification Status Comment
Service Workers
The definition of 'Clients' in that specification.
Working Draft Initial definition

Browser compatibility

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support 40.0 ? Not supported ? Not supported
Feature Android Firefox Mobile (Gecko) Firefox OS IE Mobile Opera Mobile Safari Mobile Chrome for Android
Basic support ? ? ? Not supported ? Not supported ?

See also

ドキュメントのタグと貢献者

Contributors to this page: Sebastianz, chrisdavidmills, jpmedley, fscholz, teoli, Meggin
最終更新者: Sebastianz,