--- title: Notification.data slug: Web/API/Notification/data tags: - API - Notification - Notifications - Notifications API - Property - Reference - data - プロパティ - 通知 translation_of: Web/API/Notification/data ---

{{APIRef("Web Notifications")}}{{AvailableInWorkers}}{{securecontext_header}}

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

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

構文

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);

console.log(n.data) // should return 'I like peas.'

仕様書

仕様書 状態 備考
{{SpecName('Web Notifications','#dom-notification-data','data')}} {{Spec2('Web Notifications')}} Living standard

ブラウザーの互換性

{{Compat("api.Notification.data")}}

関連情報