[$sce:iequirks] Strict Contextual Escaping does not support Internet Explorer version < 9 in quirks mode

后端 未结 2 1183
暖寄归人
暖寄归人 2021-01-06 06:19

Once I upgrade AngularJS from 1.0.7 to 1.2.0rc1 I get the following error:

[$sce:iequirks] Strict Contextual Escaping does not support Internet Explorer vers         


        
相关标签:
2条回答
  • 2021-01-06 07:00

    From the github issue related to this problem - $sce does not support IE7 in standards mode.

    The minimum bar for $sce is IE8 in standards mode. IE7 standards mode is not supported. If you must support IE7, you should disable $sce completely.

    To disable $sce:

    angular.module('ie7support', []).config(function($sceProvider) {
      // Completely disable SCE to support IE7.
      $sceProvider.enabled(false);
    });
    
    0 讨论(0)
  • 2021-01-06 07:08

    This has been answered, but somebody might find this useful: in IE(8) turn off Compatibility View - that "broken page" icon after address bar

    0 讨论(0)
提交回复
热议问题