0
A
回答
0
嘗試接收時應用程序是在前臺,但同時接收應用程序在後臺我按照FCM教程方式和實施this plugin。
當設備準備好我會觸發此代碼:
pushNotification.register(
function (result) {
//Do some stuff
}, function (error) {
//Do some stuff on error
}, {
"badge":"true",
"sound":"true",
"alert":"true",
"ecb": "onNotificationAPN"
});
而且也低於功能實現:
function onNotificationAPN(event) {
if (event) {
if (event.alert) {
alert(Recieved alert: + event.alert);
}
if (event.sound) {
var snd = new Media(event.sound);
snd.play();
}
if (event.badge) {
pushNotification.setApplicationIconBadgeNumber(function() {
//SetApplicationIconBadgeNumber success.
}, function() {
//SetApplicationIconBadgeNumber error.
},
event.badge);
}
}
}
+0
我想離子的代碼 –
+0
ohh讓我檢查 –
+0
請檢查我的更新答案,我不擅長離子,但試試這個,讓我知道 –
相關問題
- 1. 當應用程序在前臺時未收到推送通知
- 2. 當在後臺的應用程序接收pushwoosh推送通知
- 3. Worklight:應用程序無法在前臺收到推送通知
- 4. 沒有收到通知,當應用程序在前臺的通知
- 5. 當應用程序在前臺運行時收到iOS推送通知
- 6. 當使用IBM Mobilefirst收到推送通知時,如何知道應用程序是在後臺還是前臺
- 7. FCM - 當應用程序被殺害/在後臺,應用會收到通知,但不播放通知聲音
- 8. 應用程序崩潰在後臺接收推送通知
- 9. 當應用程序從後臺轉到前臺時,忽略推送通知
- 10. iOS版雨燕接收推送通知當應用程序在前臺
- 11. iOS上的10推輓沒有收到當應用程序在前臺
- 12. 當應用程序在後臺ngCordova/Ionic推送通知
- 13. 當應用程序在後臺時不顯示推送通知
- 14. 當應用程序在後臺時的Android-Firebase推送通知
- 15. 當應用程序在後臺時推送通知
- 16. 應用程序關閉時未收到Android FCM推送通知
- 17. 當應用程序被殺/被刷出時FCM推送通知未收到
- 18. 我在IOS上沒有在後臺接收fcm推送通知
- 19. 當應用程序處於後臺時接收Apple推送通知
- 20. 應用程序不會在後臺模式下收到推送通知
- 21. 當收到多個推送通知時,應用程序凍結
- 22. 在前臺應用程序未收到GCM通知
- 23. 當應用程序不在後臺或前臺,不能推送通知到通知管理器
- 24. 未在後臺收到Firebase通知或關閉應用程序
- 25. 在收到推送通知後打開應用程序
- 26. 當應用程序在後臺時未收到UINotification ios
- 27. android Intent.ACTION_TIME_TICK doent當其他應用程序在後臺時收到
- 28. 在接收到前臺應用程序和推送通知時刷新當前視圖?
- 29. 推送通知消息沒有收到應用程序?
- 30. 我的應用程序沒有收到解析推送通知
哪個設備你想? –
Android 6.0設備 –