AngularJS Internet Explorer 9

后端 未结 3 1638
难免孤独
难免孤独 2021-02-07 08:27

I have small trouble with angularjs and internet explorer9. It look like, that angularjs is not loading correctly. If I starting ie with my application, nothing will work, but i

3条回答
  •  花落未央
    2021-02-07 09:17

    I run in to the same issue and what fixed it was creating window console in the parent controller before using it. You can add the following code and try.

    window.console = window.console || {};
    window.console.log = window.console.log || function() {};
    

提交回复
热议问题