我有一个角色应用程序,它工作正常,但我的调试器显示'找不到名字角'。
var table = angular.module('myTable', ['angularUtils.directives.dirPagination']);
我在html文件中包含了angular的链接:
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
我还试图包括bower_components的链接:
<script src="bower_components/angular/angular.min.js"></script>
在Getting Error - Cannot find name 'angular'处有关于此问题的答案 但是我无法使用它。
答案 0 :(得分:7)
单击“angular”旁边的灯泡,然后选择“download typings”。
答案 1 :(得分:1)
在遇到这篇文章之前,我遇到了同样的问题:
基本上,这就是你要用npm做的事情:
cd (app path)
npm install -g tsd
tsd init
tsd query angular --action install --save
就是这样。当您重新启动VS Code时,您的问题应该消失。
请注意,我没有像文章中作者所建议的那样使用任何///引用链接,但是在上述步骤之后我停止收到有关角度未找到的消息,我已经注意到更多ng- * Intellisense中的选项。