首页 > 解决方案 > 配置要在 Internet Explorer 上查看的 SAP Fiori 应用程序

问题描述

你好,

我想在 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");

  });

});

最初它出现在 Internet Explorer 上,但后来它不再出现。

为了与 IE 兼容,我可以做哪些更改?

谢谢你!

浏览器视图

铬视图

403 错误

403 错误

预处理器IMPL 错误

标签: internet-explorersapui5

解决方案


推荐阅读