文件sap-ui-cachebuster-info.json
未生成。我尝试将data-sap-ui-appCacheBuster="../"
放在index.html
中也确实改变了相同参数的所有可能路径。
我在SAP Web IDE中面临此问题。我刚刚下载了SAP Web IDE(Eclipse Orion)并运行了Orion.exe
。我已经创建了一个(从示例应用程序创建)UI5示例应用程序,并且没有添加任何自定义代码,但
运行时,出现以下异常:
无法加载资源:服务器响应状态为404 (未找到: http://localhost:8080/file/samdhiman-OrionContent/Demo2App/sap-ui-cachebuster-info.json)发送@ jquery-dbg.js:9203
我尝试将data-sap-ui-appCacheBuster="../"
放在index.html
中也确实改变了相同参数的所有可能路径。
Index.html
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta charset="UTF-8">
<title>Demo2App</title>
<script id="sap-ui-bootstrap"
src="../../resources/sap-ui-core.js"
data-sap-ui-libs="sap.m"
data-sap-ui-theme="sap_belize"
data-sap-ui-compatVersion="edge"
data-sap-ui-appCacheBuster="./"
data-sap-ui-resourceroots='{"Demo2Demo2App": "./"}'>
</script>
<link rel="stylesheet" type="text/css" href="css/style.css">
<script>
sap.ui.getCore().attachInit(function() {
new sap.m.Shell({
app: new sap.ui.core.ComponentContainer({
height : "100%",
name : "Demo2Demo2App"
})
}).placeAt("content");
});
</script>
</head>
<body class="sapUiBody" id="content">
</body>
由于此问题,路由不起作用。请为此提供解决方案。预先感谢。
答案 0 :(得分:0)
由于应用缓存无效化已由Web IDE内部处理(请参见this answer),因此完全从data-sap-ui-appcachebuster
中删除了index.html
。启动应用程序时,Web IDE会在地址栏中相应地添加URL配置sap-ui-appCacheBuster
。