【发布时间】:2016-10-18 15:33:34
【问题描述】:
我正在使用 cordova 开发一个混合应用程序。在收到来自 APNS/FCM 的通知后,我想在应用程序图标中显示通知计数,如下图所示。我正在使用 cordova-plugin-fcm 和 cordova-plugin-badge 插件。
代码:
onDeviceReady: function() {
cordova.plugins.notification.badge.hasPermission(function (granted) {
});
cordova.plugins.notification.badge.registerPermission(function (hasPermission) {
});
// switch on 'auto clear'
cordova.plugins.notification.badge.configure({
autoClear: true
});
//FCMPlugin.getToken( successCallback(token), errorCallback(err) );
//Keep in mind the function will return null if the token has not been established yet.
FCMPlugin.getToken(
function(token){
console.log("token "+token);
},
function(err){
console.log('error retrieving token: ' + err);
}
)
//FCMPlugin.subscribeToTopic( topic, successCallback(msg), errorCallback(err) );
//All devices are subscribed automatically to 'all' and 'ios' or 'android' topic respectively.
//Must match the following regular expression: "[a-zA-Z0-9-_.~%]{1,900}".
FCMPlugin.subscribeToTopic('all');
//FCMPlugin.onNotification( onNotificationCallback(data), successCallback(msg), errorCallback(err) )
//Here you define your application behaviour based on the notification data.
FCMPlugin.onNotification(
function(data){
//increase the badge
cordova.plugins.notification.badge.increase();
if(data.wasTapped){
//Notification was received on device tray and tapped by the user.
}else{
//Notification was received in foreground. Maybe the user needs to be notified.
}
},
function(msg){
console.log('onNotification callback successfully registered: ' + msg);
},
function(err){
console.log('Error registering onNotification callback: ' + err);
}
);}
【问题讨论】:
标签: android ios cordova cordova-plugins