Safari和IE11中的Angular 5 app服务器请求错误

时间:2018-04-26 11:33:02

标签: javascript angular polyfills

我正在使用Angular 5.2应用,但它在IE11Safari 5.7.1 (windows)iPad上无法正常使用。

当我的应用初始化时,它从同一服务器上的API获取数据,并使用此API数据创建动态表。它在chromefirefox中正常工作,但在SafariIE11iPad中,它会加载部分动态内容并不会显示为无法与服务器通信并获取API数据。

我在互联网上寻找可能的解决方案,并尝试按照指示herehere和类似的问题修改polyfill.js,但它在我的情况下不起作用。

即使我可以看到我的登录表单,但登录也无法正常工作,因为无法与APIsafari中的IE11服务器进行通信。

pollyfills.ts

// This file includes polyfills needed by Angular and is loaded before the app.
// You can add your own extra polyfills to this file.
import 'core-js/es6/symbol';
import 'core-js/es6/object';
import 'core-js/es6/function';
import 'core-js/es6/parse-int';
import 'core-js/es6/parse-float';
import 'core-js/es6/number';
import 'core-js/es6/math';
import 'core-js/es6/string';
import 'core-js/es6/date';
import 'core-js/es6/array';
import 'core-js/es6/regexp';
import 'core-js/es6/map';
import 'core-js/es6/weak-map';
import 'core-js/es6/set';
import 'core-js/es6/reflect';
import 'core-js/client/shim';
import 'whatwg-fetch'
import 'core-js/es7/reflect';
import 'zone.js/dist/zone';

// If you need to support the browsers/features below, uncomment the import
// and run `npm install import-name-here';
// Learn more in https://angular.io/docs/ts/latest/guide/browser-support.html

// Needed for: IE9
 import 'classlist.js';

// Animations
// Needed for: All but Chrome and Firefox, Not supported in IE9
 import 'web-animations-js';

// Date, currency, decimal and percent pipes
// Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10
import 'intl';

// NgClass on SVG elements
// Needed for: IE10, IE11
import 'classlist.js';

我获取数据的服务方法:

readServices(){
    let data:any = {server_status_code:this.server_status_code}
    let body = prepareData(data);
    return this._http.post(this.URL,body);
  }

Safari控制台出错:

ERROR 
  Response
    _body: XMLHttpRequestProgressEvent
    headers: Headers
    line: 20093
    ok: false
    sourceId: 2123356416
    sourceURL: "http://localhost:4200/vendor.bundle.js"
    status: 0
    statusText: ""
    type: 3
    url: null
__proto__: Response type: 3
url: null
__proto__: Response
constructor: function Response(responseOptions) {
toString: function () {
__proto__: Body

请提供适当的指导。感谢。

0 个答案:

没有答案