这是我的代码
const messaging = firebase.messaging();
messaging.requestPermission()
.then(function() {
alert('Notification permission granted.');
return messaging.getToken();
}).then(function(token){
alert(token);
})
.catch(function(err) {
alert('Unable to get permission to notify.', err);
});
我在控制台中遇到了这个错误 获取脚本时收到错误的HTTP响应代码(404)。 /firebase-messaging-sw.js无法加载资源:net :: ERR_INVALID_RESPONSE