我正在使用Phonegap(cli-9.0.0)构建我的iOS和Android应用。我使用了以下插件:
<plugin name="phonegap-plugin-push" spec="2.1.3" />
接收效果很好的推送通知!在背景(本机横幅)和前景(HTML警报)中都收到了它们
但是我想知道我们是否有可能在应用程序处于前台而不是html警报时显示本机横幅?
下面的脚本可以更改为使用本机横幅而不是警报吗?:
var push = PushNotification.init({
android: {
senderID: "XXXXXXXXXXXX",
sound: "true",
vibrate: "true",
icon: "notification",
iconColor: "#002060",
clearBadge : true,
forceShow: true
},
browser: {
pushServiceURL: 'http://push.api.phonegap.com/v1/push'
}, ios: {
alert: "true",
badge: "true",
sound: "true"
},
});
push.on('notification', function(data) {
// available parameters for your disposal
//navigator.vibrate(100)
// data.title,
//data.count,
//data.sound,
// data.image,
//data.additionalData,
alert(data.message),
});