我的目标是在sap.m.Page中包含一个文档页面。 我有一个sap.m.Page进入XML视图:
<Page id="idPageSidebar" title="" showNavButton="false" navButtonPress="doBack">
<content>
//here I want visualize myDocumentation.html page
</content>
</Page>
我将myDocumentation.html放入项目的目录中。 我如何将它包含在sap.m.Page中?
答案 0 :(得分:4)
使用核心:HTML控件并通过AJAX添加内容 这里有一个例子: http://jsfiddle.net/C4FW7/
<App>
<Page title="SAPUI5 App">
<core:HTML id="html" content="hello"/>
</Page>
</App>
sap.ui.controller("my.own.controller", {
onInit: function(){
var that=this;
$.get( "/8rmAU/show/light", function( data ) {
that.getView().byId('html').setContent(data);
});
}
});