我已经开始学习Angular 4
并使用Angular CLI (NG New HelloWorld)
编写了一个默认应用程序。当我写ng serve
并浏览到http://localhost:4200/
时,页面会在Chrome
中正常加载,但在IE-Edge
中,它会打开为空页面。 IE的控制台窗口中出现错误SCRIPT5022: Exception thrown and not caught
File: polyfills.bundle.js, Line: 859, Column: 36
。
这是预期的吗?
Screenshot of Empty Page in Internet Explorer
Screenshot of How it loads in Chrome
答案 0 :(得分:8)
在这里找到了答案:
Angular4 Application running issues in IE11
转到Polyfills.js
文件夹下的src
文件,然后根据该文件中的说明取消注释以下行:
/** IE9, IE10 and IE11 requires all of the following polyfills. **/
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/set';
答案 1 :(得分:3)
第1步:
Include or uncomment the below lines in pollyfills.ts below which is under src folder
> import 'classlist.js'; import 'web-animations-js'; (window as
> any).__Zone_enable_cross_context_check = true; import
> 'zone.js/dist/zone';
第2步:
Run `npm install --save classlist.js`.
Run `npm install --save web-animations-js`.
步骤3:如下所示,将tsconfig.json文件中的target值从es2015更改为es5
“目标”:“ es5”,
第4步:
Restart your application by doing ng serve
答案 2 :(得分:1)