我正在尝试使用 Service Worker 为 Web 推送通知设置演示。在服务工作者 sw.js 中,我有以下代码。
var title = 'Yay a message.';
var body = 'We have received a push message.';
var icon = 'icon.png';
var tag = 'simple-push-demo-notification-tag';
console.log("Hello!");
self.addEventListener('push', function(event) {
event.waitUntil(
self.registration.showNotification(title, {
body: body,
icon: icon,
tag: tag
})
);
});
这工作正常。我希望收到我通过推送cURL
请求发送的数据,例如title
等等。有什么方法可以在此waitUntil
方法中获取所有数据吗?
非常感谢任何帮助。