我开发了一个phonegap应用程序,我从onesignal
获得了来自这两个设置的一些丑陋的js警报:
// Show an alert box if a notification comes in when the user is in your app.
window.plugins.OneSignal.setSubscription(true);
//activating the reception of push notification when the app is working also
window.plugins.OneSignal.enableNotificationsWhenActive(true);
我可以自定义这些,所以我使用cordovas navigator.notification.alert
而不是普通的js alert
。
答案 0 :(得分:1)
是的,这可以自定义。首先,您应该将enableNotificationsWhenActive设置为false。
接下来,请关注notificationOpenedCallback的文档,并在http://images10.newegg.com/ProductImageCompressAll200/75-169-194-04.jpg
为真时运行navigator.notification.alert(jsonData.message)
。