我有一个带有Firebase推送通知的项目。我使用@ angular / fire模块。我在打开页面时收到消息,但是在后台,我只收到推送通知,但是angularfire却没有消息。而且我也无法更改通知图标和标题。我在firebase-messaging-sw.js中完成
messaging.setBackgroundMessageHandler(function(payload) {
console.log('[firebase-messaging-sw.js] Received background message ', payload);
var notificationTitle = 'Background Message Title';
var notificationOptions = {
body: 'My message',
icon: '/mylogo.png'
};
return self.registration.showNotification(notificationTitle,
notificationOptions);
});