yeoman angular 生成器生成的应用程序抛出 angular 未定义错误

yeoman angular generator generated app throws angular undefined error

我确保 angular js 文件在其他脚本之前加载,但我仍然收到未定义的错误

截图:

我在这里唯一能想到的是 bower_components 文件夹(比应用程序文件夹高一级)的虚拟目录不存在或不工作。

检查 firebug 中的网络选项卡并确保 angular.js 不是 404-ing。我的猜测是。

您需要确保您使用的任何服务器 运行 都虚拟引用了 bower_components 文件夹。对于使用 Grunt 的默认 Yeoman angular 项目,它看起来像这样:

...
connect().use(
    '/bower_components',
     connect.static('./bower_components')
 )
...