我在 PWA 的 .jsp 页面中包含了 manifest.json 文件,如下所示。但它没有调用下载文件本身。我已经在 tomcat 服务器上托管了解决方案。
<html>
<head>
<script src="assets/js/font-awesome.js" type="text/javascript"></script>
<base href="">
<link rel="shortcut icon" href="img/favicon.ico" />
<link rel="manifest" href="BI/manifest.json?v=1.01" />
<meta http-equiv="X-UA-Compatible" content="IE=EDGE" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<app-root></app-root>
</body>
</html>
但是,网络选项卡中没有下载文件的请求。我检查了已经具有扩展类型 json 和类型 application/json 的 tomcat 服务器的 MIME 类型。
我有什么需要做的吗?或任何其他 MIME 类型?