1
sap.ui.core.HTMLを使用して簡単なHTMLコンテンツを表示しようとしています。しかし、私はブラウザで構文エラーが発生しています。以下は私のコードと添付されたエラー画像です。コンテンツを動的に設定するXMLビューの例は非常に役に立ちます。UI5 sap.ui.core.HTMLを表示する方法。 setContentが機能しない
ありがとう、 Srini。
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv='Content-Type' content='text/html;charset=UTF-8'/>
<script src="resources/sap-ui-core.js"
id="sap-ui-bootstrap"
data-sap-ui-libs="sap.m,sap.ui.commons"
data-sap-ui-theme="sap_bluecrystal">
</script>
<script>
var oHtml = new sap.ui.core.HTML("l1");
oHtml.setContent("<h1> This is the simple</h1> ",true);
//Create a panel instance
var oPanel = new sap.ui.commons.Panel();
//Add something to the panel's content area
oPanel.addContent(oHtml);
//Attach the panel to the page
oPanel.placeAt("content");
</script>
</head>
<body class="sapUiBody" role="application">
<div id="content"></div>
</body>
</html>
ありがとうございます。それは今働いている。 UI5での初心者の参考に、http://jsbin.com/gifavu/edit?html,outputの例を作成しました – SriniRao