每个新的SAPUI5项目都显示一个空白页

时间:2019-10-01 07:31:54

标签: javascript sapui5 sap

每次设置一个新的sapui5项目时,我什么也没有显示,只有空白页。

我已经看过控制台了,有些东西丢失了。我已经更改了index.html,语言并尝试了来自互联网的其他操作。 一旦遇到问题,它本身就会突然解决。我还重置了缓存,对我而言一次有效。我正在使用本地SAP Web IDE。

<!DOCTYPE HTML>
<html>

    <head>
        <meta http-equiv="X-UA-Compatible" content="IE=edge" />
        <meta charset="UTF-8">

        <title>test_chart</title>

        <script id="sap-ui-bootstrap"
            src="https://openui5.hana.ondemand.com/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-resourceroots='{"test_charttest_chart": ""}'>
        </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 : "test_charttest_chart"
                    })
                }).placeAt("content");
            });
        </script>
    </head>

    <body class="sapUiBody" id="content">
    </body>

</html>

chrome network tab

console

0 个答案:

没有答案