--- title: ServiceWorkerRegistration.showNotification() slug: Web/API/ServiceWorkerRegistration/showNotification translation_of: Web/API/ServiceWorkerRegistration/showNotification ---
{{SeeCompatTable}}{{APIRef("Service Workers API")}}
The showNotification()
method of the {{domxref("ServiceWorkerRegistration")}} interface creates a notification on an active service worker.
Note: This feature is available in Web Workers.
ServiceWorkerRegistration.showNotification(title, [options]).then(function(NotificationEvent) { ... });
A {{jsxref('Promise')}} that resolves to a {{domxref('NotificationEvent')}}.
title
options
{{optional_inline}}actions
: An array of actions to display in the notification. The members of the array should be an object literal. It may contain the following values:
event.action
within the {{event("notificationclick")}} event.badge
: The URL of an image to represent the notification when there is not enough space to display the notification itself such as, for example, the Android Notification Bar. On Android devices, the badge should accommodate devices up to 4x resolution, about 96 by 96 px, and the image will be automatically masked.body
: Строка с дополнительным контентом уведомления.dir
: The direction of the notification; it can be auto
, ltr
, or rtl
icon
: URL или base64 версия картинки, которая отображается рядом с уведомлением.image
: URL {{domxref("USVSTring")}} картинки, которая отображается внутри уведомления.lang
: Specify the lang used within the notification. This string must be a valid BCP 47 language tag.renotify
: A boolean that indicates whether to supress vibrations and audible alerts when resusing a tag
value. The default is false.requireInteraction
: Indicates that on devices with sufficiently large screens, a notification should remain active until the user clicks or dismisses it. If this value is absent or false, the desktop version of Chrome will auto-minimize notifications after approximately twenty seconds. The default value is false
.tag
: An ID for a given notification that allows you to find, replace, or remove the notification using script if necessary.vibrate
: Шаблон вибрации, которая будет воспроизведена вместе с уведомлением. Шаблон может быть массивом из как минимум одного элемента. Значения элементов это время в миллисекундах, при этом чётные элементы (0, 2, 4, и т.д.) отражают периоды вибрации, а нечётные периоды пауз. Например, [300, 100, 400]
будет означать вибрацию 300ms, паузу 100ms, затем вибрацию 400ms.data
: Arbitrary data that you want associated with the notification. This can be of any data type.navigator.serviceWorker.register('sw.js'); function showNotification() { Notification.requestPermission(function(result) { if (result === 'granted') { navigator.serviceWorker.ready.then(function(registration) { registration.showNotification('Vibration Sample', { body: 'Buzz! Buzz!', icon: '../images/touch/chrome-touch-icon-192x192.png', vibrate: [200, 100, 200, 100, 200, 100, 200], tag: 'vibration-sample' }); }); } }); }
To invoke the above function at an appropriate time, you could use the {{domxref("ServiceWorkerGlobalScope.onnotificationclick")}} event handler.
You can also retrieve details of the {{domxref("Notification")}}s have have been fired from the current service worker using {{domxref("ServiceWorkerRegistration.getNotifications()")}}.
Specification | Status | Comment |
---|---|---|
{{SpecName('Web Notifications','#dom-serviceworkerregistration-shownotificationtitle-options','showNotification()')}} | {{Spec2('Web Notifications')}} | Initial definition. |
{{Compat}}
{{Compat("api.ServiceWorkerRegistration.showNotification")}}