我正在使用 phonegap-plugin-push让我的 ionic 应用程序注册和接收通知。 它在 Android 上完美运行,但在 iOS 上不会引发注册事件。
问题是我可以看到设备正在注册推送通知:
00:00 4/Notify: Push Plugin register called
00:00 4/Notify: Push Plugin register success: <d4fab0e8 85074aa2 f3a33a85 d32a373f f3b5e4f6 bb94aecb 9fe3732d 77eb5c14>
但我的应用中从未调用过“注册”事件。
// Initialize push notifications for iOs and Android
var pushObj = PushNotification.init({
"android": {"senderID": Constants.ANDROIDSENDERID},
"ios": {"alert": "true", "badge": "true", "sound": "true"}, "windows": {}
});
console.log('add listener push registration');
// handle push notifications
pushObj.on('registration', function (data) {
console.log('registration successful');
}
“注册成功”日志消息是在 Android 上编写的,而不是在 iOS 上编写的。 我已经被这个问题困扰了一天多。 有谁知道这个问题的解决方案(或可能解决方案的方向)?
我也遇到了同样的问题,这是位于
的源文件中的错误/src/ios/PushPlugin.m
它已修复并已提出拉取请求。可以通过@#646 跟踪该问题。
如果您可以使用非官方插件,请将此插件导入您的项目
phonegap plugin add https://github.com/pauljacobv/PushPlugin.git
它可以解决这个问题。
关于ios - phonegap 推送插件不会在 iOS 上引发注册事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33093926/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |