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
事件userInfo
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 收到的通知。请参阅:https://developer.apple.com/documentation/appkit/nsapplication/1428747-unregisterforremotenotifications?language=objc