您好,
我想在Internet Explorer上加载Fiori应用程序,但它不像Chrome一样加载。我附上了出现的错误。
我试图更改index.html页面上的内容但不是运气:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge;"/>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Summary Screen</title>
<!-- Bootstrapping UI5 -->
<script id="sap-ui-bootstrap"
src="resources/sap-ui-core.js"
data-sap-ui-libs="sap.m"
data-sap-ui-theme="sap_bluecrystal"
data-sap-ui-compatVersion="edge"
data-sap-ui-resourceroots='{"summary": "./"}'
data-sap-ui-frameOptions="trusted">
</script>
<script>
sap.ui.getCore().attachInit(function () {
sap.ui.require([
"sap/m/Shell",
"sap/ui/core/ComponentContainer"
], function (Shell, ComponentContainer) {
// initialize the UI component
new Shell({
appWidthLimited: false,
app: new ComponentContainer({
height : "100%",
name : "summary"
})
}).placeAt("content");
});
});
最初它出现在互联网资源管理器上,但后来又没有显示出来。
我可以做哪些更改来兼容IE?
谢谢!