angularjs – WebStorm – “角”未定义

前端之家收集整理的这篇文章主要介绍了angularjs – WebStorm – “角”未定义前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
注意:这是一个WebStorm问题,而不是angular.js问题。

Screencast的问题:http://f.cl.ly/items/302s0d1k1i3i1B2p0W09/ws703-angular-not-defined.mp4

描述:

我的index.html文件中有以下内容

<script src="vendor/js/angular.min.js"></script>
<script src="app/js/scratch.js"></script>

在scratch.js中,当我引用“角”时,我不断得到这个来自JSHint的“角度没有定义”的消息。如何让它如此被定义在这个文件中,所以JSHint停止抱怨呢?这是配置问题吗?请指教。

WebStorm v7.0.3 / Mac OSX v10.9.1

documentation page of JSHint的第一个例子如下:

Configuration file is a simple JSON file that specifies which JSHint options to turn on or off. For example,the following file will enable warnings about undefined and unused variables and tell JSHint about a global variable named MY_GLOBAL.

{
  "undef": true,"unused": true,"globals": { "MY_GLOBAL": false }
}

替换MY_GLOBAL有角度,你不会再有这个JSHint警告了。

原文链接:https://www.f2er.com/angularjs/144112.html

猜你在找的Angularjs相关文章