解决Angular 7在IE中的兼容性问题通常需要进行以下步骤:
npm install --save classlist.js
npm install --save web-animations-js
npm install --save zone.js
npm install --save core-js
import 'core-js/es6/reflect';
import 'core-js/es7/reflect';
import 'zone.js/dist/zone';
import 'classlist.js';
import 'web-animations-js';
{
"compilerOptions": {
...
"target": "es5",
"downlevelIteration": true,
...
}
}
// 添加IE的支持
if (typeof window !== 'undefined') {
// detect IE
const isIE = /msie\s|trident\//i.test(window.navigator.userAgent);
if (isIE) {
// IE11 requires the following for NgClass support on SVG elements
(window as any).global = window;
}
}
"browserslist": [
"IE 9",
"IE 10",
"IE 11"
]
完成以上步骤后,重新编译并在IE浏览器中测试应用程序。这些步骤通常可以解决Angular 7在IE中的兼容性问题,并确保应用程序在旧版本的浏览器中正常运行。