Angular2应用程序在IE 9中不工作

Angular2应用程序在IE 9中不工作,angular,Angular,我正在开发的应用程序也需要在IE 9中运行,但当我启用polyfills时,该应用程序无法运行 Imported 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

我正在开发的应用程序也需要在IE 9中运行,但当我启用polyfills时,该应用程序无法运行

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

import 'classlist.js';

import 'mdn-polyfills/Object.assign';

import 'web-animations-js';

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

import 'zone.js/dist/zone';
有了这些polyfills,我的应用程序可以在IE 10和11上运行。在IE 9中,其显示以下异常: 感谢您的帮助


谢谢,

看起来像是我所理解的表单控制台错误的副本,需要反映元数据。我已经在网上搜索并添加了反映元数据npm包,并在polyfills中导入,但仍然显示相同的错误。我不确定我在polyfills中导入的语句是否正确导入“reflect metadata/reflect”是导入包的正确方法吗