Angular 1.3 引入了一种新方法,如果在应用程序配置函数debugInfoEnabled()
中调用它可以提高性能:false
myApp.config(['$compileProvider', function ($compileProvider) {
$compileProvider.debugInfoEnabled(false);
}]);
此外,Angular 1.3 放弃了对 IE8 的支持。这对我来说是个问题,我的应用程序必须在 IE8 上运行。因此,我无法升级到 Angular 1.3 并且必须使用 1.2。
有没有办法用 angular 1.2 实现相同的功能?
特别是,至少有一部分是debugInfoEnabled()
:
- 在创建新范围时防止创建
ng-scope
/ng-isolated-scope
CSS 类 - 不要将绑定数据和 ng-class CSS 类附加到具有 ngBind、ngBindHtml 或 {{...}} 插值的元素
作为一种可能的选择,我可以分叉 angularjs 存储库并将功能反向移植回 1.2。然后,使用分支维护来自上游的更新。
将不胜感激任何指针。