作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的目标是将文档页面包含到 sap.m.Page 中。我有一个 sap.m.Page 到 XML View :
<Page id="idPageSidebar" title="" showNavButton="false" navButtonPress="doBack">
<content>
//here I want visualize myDocumentation.html page
</content>
</Page>
我将 myDocumentation.html 放入我的项目目录中。如何将其包含到 sap.m.Page 中?
最佳答案
使用core: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);
});
}
});
关于sapui5 - 如何将 html 页面包含到页面内容中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24508581/
我是一名优秀的程序员,十分优秀!