我遇到了通过执行SAP UI5演练来显示我的xml View的问题。
我的项目结构看起来像这样:
02_Walkthrough
这是我的代码:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible"
content="IE=edge">
<meta charset="utf-8">
<title>SAPUI5 Walkthrough</title>
<script id="sap-ui-bootstrap"
src="../resources/sap-ui-core.js"
data-sap-ui-theme="sap_belize"
data-sap-ui-libs="sap.m"
data-sap-ui-compatVersion="edge"
data-sap-ui-preload="async"
data-sap-ui-resourceroots='{
"02_Walkthrough": "./"
}'>
</script>
<script>
sap.ui.getCore().attachInit(function() {
sap.ui.xmlview({
viewName: "02_Walkthrough.view.App"
}).placeAt("content");
});
</script>
</head>
<body class="sapUiBody"
id="content">
</body>
</html>
&#13;
但我仍然收到无法加载资源的错误。
您可以向我提供任何提示吗?
答案 0 :(得分:-1)
将App.view.xml文件放置在Web应用程序文件夹下,然后再次运行该应用程序。