只有在应用程序处于前台时才可以显示通知吗?我不需要在后台显示通知。
我的setBackgroundMessageHandler
在服务人员中看起来像:
messaging.setBackgroundMessageHandler(function(payload) {
console.log('[firebase-messaging-sw.js] Received background message ', payload);
// Customize notification here
var notificationTitle = 'Background Message Title';
var notificationOptions = {
body: 'Background Message body.',
icon: '/firebase-logo.png'
};
});
我没有返回showNotification
,但正在显示
答案 0 :(得分:0)
Firebase Cloud Messaging有两种类型的消息:
由于要防止系统在系统托盘中显示通知,因此应发送数据消息。