在firebase-messaging-sw.js
中importScripts('https://www.gstatic.com/firebasejs/3.5.2/firebase-app.js');importScripts('https://www.gstatic.com/firebasejs/3.5.2/firebase-messaging.js
获取错误,为"未定义importscripts"
在Angular应用中将firebase-messaging-sw.js js文件包括在哪里? 我已包含在脚本/firebase-messaging-sw.js。
中in index.html
<script src="scripts/firebase-messaging.js"></sc
在您的index.html中,您不应该引用firebase-messaging-sw.js而不是firebase-message.js吗?另外,我相信firebase-messaging-sw.js需要处于根级别(脚本目录中没有嵌套)。因此,您将在index.html ...
中拥有类似以下内容<script src="firebase-messaging-sw.js">
服务工作者脚本将被加载,然后将从Firebase CDN导入Firebase脚本。