Flutter无法为脚本注册作用域的ServiceWorker,该脚本的MIME类型不受支持 [英] Flutter Failed to register a ServiceWorker for scope with script, The script has an unsupported MIME type

查看:48
本文介绍了Flutter无法为脚本注册作用域的ServiceWorker,该脚本的MIME类型不受支持的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个具有FlutterFire功能的功能齐全的Flutter应用程序,其中的android捆绑包运行得很好,但是Web客户端启动时却出现了一个奇怪的错误.我也不能用flutterfire调用任何firebase函数.(简单的Firebase查询就可以了)

I have a fully functioning Flutter app with FlutterFire, where the android bundle works just fine, but the web client gives a strange error upon start. I cannot call any firebase function with flutterfire with it either. (simple firebase queries works just fine)

启动时或尝试调用 FirebaseFunctions.instance.httpsCallabe('... :

:1337/dart_sdk.js:7025 Uncaught (in promise) Error: [firebase_messaging/failed-service-worker-registration] Messaging: 
We are unable to register the default service worker. 
Failed to register a ServiceWorker for scope ('http://localhost:1337/firebase-cloud-messaging-push-scope') with script ('http://localhost:1337/firebase-messaging-sw.js'): The script has an unsupported MIME type ('text/html'). .
    at Object.throw_ [as throw] (:1337/dart_sdk.js:5334)
    at firebase_messaging_web.FirebaseMessagingWeb.new.getToken (:1337/packages/firebase_messaging_web/firebase_messaging_web.dart.lib.js:112)
    at getToken.throw (<anonymous>)
    at :1337/dart_sdk.js:39038
    at _RootZone.runBinary (:1337/dart_sdk.js:38894)
    at _FutureListener.thenAwait.handleError (:1337/dart_sdk.js:33887)
    at handleError (:1337/dart_sdk.js:34451)
    at Function._propagateToListeners (:1337/dart_sdk.js:34477)
    at _Future.new.[_completeError] (:1337/dart_sdk.js:34323)
    at async._AsyncCallbackEntry.new.callback (:1337/dart_sdk.js:34362)
    at Object._microtaskLoop (:1337/dart_sdk.js:39176)
    at _startMicrotaskLoop (:1337/dart_sdk.js:39182)
    at :1337/dart_sdk.js:34689

我没有firebase-messaging-sw.js 文件.我只按照文档的建议做了 https://firebase.flutter.dev/docs/messaging/overview/#5-web-only-add-the-sdk .

I don't have a firebase-messaging-sw.js file. I only did what the documentation recommended https://firebase.flutter.dev/docs/messaging/overview/#5-web-only-add-the-sdk.

我的index.html:

My index.html:

<!DOCTYPE html>
<html>
<head>
...

  <!-- The core Firebase JS SDK is always required and must be listed first -->
  <script src="https://www.gstatic.com/firebasejs/7.20.0/firebase-app.js"></script>
  <script src="https://www.gstatic.com/firebasejs/7.20.0/firebase-auth.js"></script>
  <script src="https://www.gstatic.com/firebasejs/7.20.0/firebase-firestore.js"></script>
  <script src="https://www.gstatic.com/firebasejs/7.20.0/firebase-messaging.js"></script>
  <script src="https://www.gstatic.com/firebasejs/7.20.0/firebase-functions.js"></script>


  <script>
    // Your web app's Firebase configuration
    var firebaseConfig = {
      apiKey: "****",
      authDomain: "*****",
      databaseURL: "*****",
      projectId: "*****",
      storageBucket: "*****",
      messagingSenderId: "*****",
      appId: "*****"
    };
    // Initialize Firebase
    firebase.initializeApp(firebaseConfig);
  </script>
</head>
<body>
<script >
  if ('serviceWorker' in navigator) {
    window.addEventListener('flutter-first-frame', function () {
      navigator.serviceWorker.register('flutter_service_worker.js');
    });
  }
</script>
  <script src="main.dart.js" type="application/javascript"></script>
</body>
</html>

扑打医生:

$ flutter doctor
Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel stable, 2.0.3, on Linux, locale en_US.UTF-8)

推荐答案

找到的解决方案: https://stackoverflow.com/a/63800226/3486691

我必须创建文件并提供默认设置,这样应用程序才能正常运行而不会引发错误.

I had to create the file and provide the default settings so the app can work without throwing errors.

这篇关于Flutter无法为脚本注册作用域的ServiceWorker,该脚本的MIME类型不受支持的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆