Firebase FCM React 项目问题 - firebase-messaging-sw.js 类型错误?

Firebase FCM React project issue - firebase-messaging-sw.js wrong type?(Firebase FCM React 项目问题 - firebase-messaging-sw.js 类型错误?)
本文介绍了Firebase FCM React 项目问题 - firebase-messaging-sw.js 类型错误?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图让 Firebase FCM 在我的 React 项目中工作(使用 webpack)

Im tryin to get Firebase FCM working in my React project(using webpack )

当尝试使用 getToken() 时:

When trying to getToken() using:

 messaging.requestPermission()
  .then(function() {
    console.log('Notification permission granted.');
    return messaging.getToken();
  })
  .then(function(token) {
    console.log('token')
  })
  .catch(function(err) {
    console.log('Unable to get permission to notify.', err);
  });

异常抛出如下:

browserErrorMessage: "Failed to register a ServiceWorker: The scrip 
has an unsupported MIME type ('text/html')

我了解此问题与缺少的 service worker 文件有关:firebase-messaging-sw.js,我已将其添加到项目的根目录,但我仍然收到相同的错误.

I understand that this issue is related to the missing service worker file: firebase-messaging-sw.js, which I added to the root of the project but I'm still getting the same error.

我不确定我在这里做错了什么,我已经设置了 vanilla java 脚本项目,它工作正常....

Im not sure what im doing wrong here, i've set up vanilla java script project and it works fine ....

关于这个问题有什么想法吗?

Any ideas about this issue ?

推荐答案

对于那些使用create-react-app的人,你可以在public<中创建firebase-messaging-sw.js/code> 文件夹,并在 index.js 上添加:

For those using create-react-app, you can create the firebase-messaging-sw.js inside public folder and, on index.js add:

if ('serviceWorker' in navigator) {
  navigator.serviceWorker.register('../firebase-messaging-sw.js')
  .then(function(registration) {
    console.log('Registration successful, scope is:', registration.scope);
  }).catch(function(err) {
    console.log('Service worker registration failed, error:', err);
  });
}

这篇关于Firebase FCM React 项目问题 - firebase-messaging-sw.js 类型错误?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)