当我尝试从文件夹“view”加载视图时,我收到错误“资源视图/ View1.view.xml无法从资源/视图/ View1.view.xml加载”。 WebIDE中的文件夹结构如下图所示。
的index.html
<!DOCTYPE HTML>
<html>
<head>
<script id="sap-ui-bootstrap"
src="resources/sap-ui-core.js"
data-sap-ui-libs="sap.m"
data-sap-ui-theme="sap_bluecrystal" >
</script>
<script>
sap.ui.localResources("webapp");
var app = new sap.m.App("idApp");
var view1 = sap.ui.view({id:"idView1",
viewName:"view.View1",type:sap.ui.core.mvc.ViewType.XML});
</script>
</head>
<body class="sapUiBody" role="application">
<div id="content" ></div>
</body>
</html>
View1.xml
<mvc:View
xmlns="sap.m"
xmlns:mvc="sap.ui.core.mvc">
<Text id="idbtn" text="Text from" />
</mvc:View>
View1.controller
sap.ui.define([
"sap/ui/core/mvc/Controller"
], function(Controller) {
"use strict";
return Controller.extend("View1");
});
新app.json
{
"routes": [
{
"path": "/webapp/resources",
"target": {
"type": "service",
"name": "sapui5",
"entryPath": "/resources"
},
"description": "SAPUI5 Resources"
}
]
}
浏览器中出现
我尝试了几种方法,但找不到指向View1.xml的方法
先谢谢, 作者Srini。
答案 0 :(得分:1)
请在脚本标签内使用data-sap-ui-resourceroots'{"webapp": "./" }'
,并且视图名称应为webapp.view.View1
中的index.html
。
答案 1 :(得分:0)
sap.ui.localResources("webapp");
注册 webapp 命名空间的webapp文件夹。你也可以在控制台中看到它。
所以它应该是viewName: "webapp.view.View1"
。
另请注意,您的控制器称为 webapp.controller.View1 :
return Controller.extend("webapp.controller.View1", {
...