当我在visual studio上运行我的角度应用程序时出错。

时间:2017-04-21 07:59:15

标签: html angularjs visual-studio

我使用html,css和javascript创建了一个待办事项列表应用。我尝试使用javascript创建相同的应用。我遇到的问题是,当我在应用程序中包含角度时,我收到此错误。

Angular: disabling automatic bootstrap. <script> protocol indicates an extension, document.location.href does not match.

1 个答案:

答案 0 :(得分:5)

这可能是IE错误,请尝试手动引导您的应用,而不是依赖于ng-app指令的标准方法。

angular.element(document).ready(function () {  
 angular.bootstrap(document, ['nameOfYourApp']);
});

https://github.com/angular/angular.js/issues/15567

https://github.com/angular/angular.js/issues/15772

https://www.roelvanlisdonk.nl/2017/02/01/fix-in-ie-angular-1-6-1-disabling-automatic-bootstrap-script-protocol-indicates-an-extension-document-location-href-does-not-match/