我使用html,css和javascript创建了一个待办事项列表应用。我尝试使用javascript创建相同的应用。我遇到的问题是,当我在应用程序中包含角度时,我收到此错误。
Angular: disabling automatic bootstrap. <script> protocol indicates an extension, document.location.href does not match.
答案 0 :(得分:5)
这可能是IE错误,请尝试手动引导您的应用,而不是依赖于ng-app
指令的标准方法。
angular.element(document).ready(function () {
angular.bootstrap(document, ['nameOfYourApp']);
});
https://github.com/angular/angular.js/issues/15567