【问题标题】:How to make the angular application to run on IE 11 ? Got Error when trying to achieve如何使 Angular 应用程序在 IE 11 上运行?尝试实现时出错
【发布时间】:2019-11-22 17:40:18
【问题描述】:

我已经尝试了使我的 Angular 7 应用程序在 IE 11 上工作的可能方法(更改了 polyfills 文件) 但没有一个工作。有什么我想念的吗。我应该如何使它工作。请帮助我。

更改了 polyfills 文件 并安装了 polyfills.ts 文件中引用的 npm index.html 有什么要改变的吗

Facing Error as
SCRIP1014 Invalid character Error
In vendor.js file

这里是 tsconfig.json 文件

{
  "compileOnSave": false,
  "compilerOptions": {
    "baseUrl": "./",
    "outDir": "./dist/out-tsc",
    "sourceMap": true,
    "declaration": false,
    "module": "es2015",
    "moduleResolution": "node",
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "importHelpers": true,
    "target": "es5",
    "typeRoots": [
      "node_modules/@types"
    ],
    "lib": [
      "es2018",
      "dom"
    ],
    "paths": {
      "@app/*": [
        "src/app/*"
      ],
      "os":[
        "src/empty.ts"
      ],
      "@env/*": [
        "src/environments/*"
      ]
    }
  }
}

【问题讨论】:

  • 你用的是什么版本的ES?您可以在 tsconfig 文件中看到它。
  • 我们需要您尝试使用的 vendor.js 文件;或导致问题的同一文件的最小复制。尝试一个有角度的引导项目,看看它是否仍然发生。
  • @JacopoSciampi 我已经用 tsconfig 更新了我的问题。你能检查一下吗
  • 据此 -> stackoverflow.com/questions/57425517/… 我会尝试一次导入几个库来查找导致错误的库
  • 从您上次的评论来看,您似乎找到了解决问题的方法。我建议您将您的解决方案作为答案发布,并尝试在 48 小时后将您自己的答案标记为该问题的可接受答案,此时可以标记。它可以在未来帮助其他社区成员解决类似的问题。感谢您的理解。

标签: angular angular7 internet-explorer-11


【解决方案1】:

以下是解决方案..

在正常的 Angular 7 应用程序中,如果它在 IE11 上不起作用

  1. 必须更新 polyfills.ts 文件,如下所示
  2. 并且必须在 tsconfig.json 文件中将目标设置为 es5

这里是您必须更改的文件,如下所示

polyfills.ts 文件

/**
 * This file includes polyfills needed by Angular and is loaded before the app.
 * You can add your own extra polyfills to this file.
 *
 * This file is divided into 2 sections:
 *   1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers.
 *   2. Application imports. Files imported after ZoneJS that should be loaded before your main
 *      file.
 *
 * The current setup is for so-called "evergreen" browsers; the last versions of browsers that
 * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera),
 * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile.
 *
 * Learn more in https://angular.io/guide/browser-support
 */

/***************************************************************************************************
 * BROWSER POLYFILLS
 */

/** IE10 and IE11 requires the following for NgClass support on SVG elements */
import 'classlist.js';  // Run `npm install --save classlist.js`.

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/regexp';
import 'core-js/es6/map';
import 'core-js/es6/weak-map';
import 'core-js/es6/set';

import 'core-js/es6/array';
import 'core-js/es7/array';

import 'core-js/es6/reflect';
import 'core-js/es7/reflect';
import 'core-js/es7/object';


/**
 * Web Animations `@angular/platform-browser/animations`
 * Only required if AnimationBuilder is used within the application and using IE/Edge or Safari.
 * Standard animation support in Angular DOES NOT require any polyfills (as of Angular 6.0).
 */
import 'web-animations-js';  // Run `npm install --save web-animations-js`.

/**
 * By default, zone.js will patch all possible macroTask and DomEvents
 * user can disable parts of macroTask/DomEvents patch by setting following flags
 * because those flags need to be set before `zone.js` being loaded, and webpack
 * will put import in the top of bundle, so user need to create a separate file
 * in this directory (for example: zone-flags.ts), and put the following flags
 * into that file, and then add the following code before importing zone.js.
 * import './zone-flags.ts';
 *
 * The flags allowed in zone-flags.ts are listed here.
 *
 * The following flags will work for all browsers.
 *
 * (window as any).__Zone_disable_requestAnimationFrame = true; // disable patch requestAnimationFrame
 * (window as any).__Zone_disable_on_property = true; // disable patch onProperty such as onclick
 * (window as any).__zone_symbol__BLACK_LISTED_EVENTS = ['scroll', 'mousemove']; // disable patch specified eventNames
 *
 *  in IE/Edge developer tools, the addEventListener will also be wrapped by zone.js
 *  with the following flag, it will bypass `zone.js` patch for IE/Edge
 *
 *  (window as any).__Zone_enable_cross_context_check = true;
 *
 */

/***************************************************************************************************
 * Zone JS is required by default for Angular itself.
 */
import 'zone.js/dist/zone';  // Included with Angular CLI.


/***************************************************************************************************
 * APPLICATION IMPORTS
 */

tsconfig.json

{
  "compileOnSave": false,
  "compilerOptions": {
    "baseUrl": "./",
    "outDir": "./dist/out-tsc",
    "sourceMap": true,
    "declaration": false,
    "module": "es2015",
    "moduleResolution": "node",
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "importHelpers": true,
    "target": "es5",
    "lib": [
      "es2018",
      "dom"
    ],
    "paths": {
      "@app/*": [
        "src/app/*"
      ],
      "@env/*": [
        "src/environments/*"
      ]
    }
  }
}

问题是我使用了角度组件作为节点包在这我也将 tsconfig 中的目标设置为 es2015。那么它对我来说很好

注意:必须运行 npm install --save classlist.js 和 npm install --save web-animations-js

【讨论】:

    猜你喜欢
    • 2020-06-05
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2018-06-19
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多