Angular 2 / 4 / 5 not working in IE11

后端 未结 22 2097
野的像风
野的像风 2020-11-22 11:07

I am trying to figure out why my angular 2 app is stuck on showing Loading... when running in IE 11.

Following someone\'s suggestion, I\'ve tried this plunker, poste

22条回答
  •  太阳男子
    2020-11-22 11:52

    If you have still problems that not all JavaScript functions are working add this line in your polyfills. It fixes the missing ‘values’ method:

    import 'core-js/es7/object';
    

    And this line fixes the missing ‘includes’ method:

    import 'core-js/es7/array'
    

提交回复
热议问题