pushNotifications
进程:主进程
注册并接收来自远程推送通知服务的通知
例如,通过 Apple 推送通知服务 (APNS) 注册推送通知时
const { pushNotifications, Notification } = require('electron')
pushNotifications.registerForAPNSNotifications().then((token) => {
// forward token to your remote notification server
})
pushNotifications.on('received-apns-notification', (event, userInfo) => {
// generate a new Notification object with the relevant userInfo fields
})
事件
pushNotification
模块会发出以下事件
事件:'received-apns-notification' macOS
返回
event
EventuserInfo
Record<String, any>
当应用程序运行时收到远程通知时触发。参见:https://developer.apple.com/documentation/appkit/nsapplicationdelegate/1428430-application?language=objc
方法
pushNotification
模块有以下方法
pushNotifications.registerForAPNSNotifications()
macOS
返回 Promise<string>
向 Apple 推送通知服务 (APNS) 注册应用程序,以接收徽章、声音和提醒通知。如果注册成功,Promise 将解析为 APNS 设备令牌。否则,Promise 将被拒绝,并带有错误消息。参见:https://developer.apple.com/documentation/appkit/nsapplication/1428476-registerforremotenotificationtyp?language=objc
pushNotifications.unregisterForAPNSNotifications()
macOS
取消应用程序从 APNS 接收的通知注册。
通过此方法取消注册的应用程序可以随时重新注册。