1. Web
  2. Web APIs
  3. PushMessageData
  4. text()

PushMessageData: text() method

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since March 2023.

Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.

Note: This feature is only available in Service Workers.

The text() method of the PushMessageData interface extracts push message data as a plain text string.

Syntax

js
text()

Parameters

None.

Return value

A string.

Examples

js
self.addEventListener("push", (event) => {
 const textObj = event.data.text();
 // do something with your text
});

Specifications

Specification
Push API
# dom-pushmessagedata-text

Browser compatibility

Help improve MDN

Learn how to contribute

This page was last modified on by MDN contributors.

AltStyle によって変換されたページ (->オリジナル) /