настроить приложение SAP Fiori для просмотра в Internet Explorer - PullRequest
0 голосов
/ 04 июня 2018

Привет,

Я хочу загрузить приложение Fiori в Internet Explorer, но оно загружается не так, как в 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?

Спасибо!

IE View

Chrome View

403 Error

403 Error

PreProcessorIMPL Error

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...