如何在 Service Worker 中获取我的配置 json 文件

问题描述

我的 tools/apache/htdocs/apps/config/firebase-config.json
中有一个 firebase 配置文件 我的 serviceworker tools/apache/htdocs/firebase-messaging-sw.js

中需要此配置文件

es5 有什么办法吗?

解决方法

fetch("./config/firebaseConf.json").then(function (res) {
  return res.json();
}).then(function (data) {
 var firebase =  data;
})

上面的代码对我有用。