无法从resources / view / View1.view.xml加载资源视图/ View1.view.xml。在WebIDE中

时间:2016-10-31 18:32:23

标签: resources sap sapui5 web-ide

当我尝试从文件夹“view”加载视图时,我收到错误“资源视图/ View1.view.xml无法从资源/视图/ View1.view.xml加载”。 WebIDE中的文件夹结构如下图所示。

WebIDE Folder structure :-

的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"
    }
    ]
}
浏览器中出现

错误 enter image description here

我尝试了几种方法,但找不到指向View1.xml的方法

先谢谢, 作者Srini。

2 个答案:

答案 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", {

...