我已经阅读了phonegap的文档,说它支持一些推送通知功能http://wiki.phonegap.com/w/page/37159628/Notifications
我可以知道是否可以使用PhoneGap进行“家徽”推送通知?
答案 0 :(得分:1)
答案 1 :(得分:1)
可以使用Cordova Push Notifications Plugin。
此插件为推送通知提供方便的回调,您可以在其中相应地设置应用程序图标徽章,例如:
//push notifications callback function
function onNotificationAPN (event) {
//handle push message
if (event.badge) //a badge number is provided in the push message
{
//set the application icon badge number accordingly
pushNotification.setApplicationIconBadgeNumber(successHandler, errorHandler, event.badge);
}
}