Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Notification.data

この記事は編集レビューを必要としています。ぜひご協力ください

Notificationインターフェースのdata読み取り専用プロパティは、Notification()コンストラクターのdataオプションで指定した、通知データの構造化されたクローンを返します。

通知のデータは、通知と関連付けたい任意のデータを使用できます。

註: This feature is available in Web Workers.

構文

var data = Notification.data;

構造化されたクローン。

次のスニペットは、通知を発火します。簡単なoptionsオブジェクトが生成されてから、Notification()コンストラクターを使用して通知が発火されます。

var options = {
  body: 'Do you like my body?',
  data: 'I like peas.'
}

var n = new Notification('Test notification',options);

n.data // should return 'I like peas.'

仕様

Specification Status Comment
Notifications API
The definition of 'data' in that specification.
Living Standard Living standard

ブラウザ実装状況

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support 44 未サポート 未サポート ? 未サポート
Available in workers ? 41.0 (41.0) ? ? ?
Feature Android Android Webview Firefox Mobile (Gecko) Firefox OS IE Mobile Opera Mobile Safari Mobile Chrome for Android
Basic support 未サポート

未サポート

未サポート 未サポート 未サポート ? 未サポート

44

Available in workers ? ? 41.0 (41.0) ? ? ? ? ?

関連項目

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

 このページの貢献者: YuichiNukiyama
 最終更新者: YuichiNukiyama,