我测试generator-angular
并制作了一个像这样的测试应用
yo angular
然后我在文档中读到我可以使用coffeescript而不是js文件,所以我在coffeescript中创建了一个名为user
的控制器
yo angular:contrller user --coffee
我将app.js文件中的控制器更改为UserCtrl
,然后使用
grunt serve
当我检查控制台时,因为它不起作用,它说
Failed to load resource: the server responded with a status of 404 (Not Found)
http://127.0.0.1:9000/scripts/controllers/user.js
答案 0 :(得分:0)
我执行了相同的命令,它运行正常。 当你运行
yo angular:contrller user --coffee
它应该创建两个文件
create app/scripts/controllers/user.js
create test/spec/controllers/user.js
并且在不更改app.js的情况下首先检查并查看是否可以运行
grunt服务器
我建议重新运行
yo angular
命令并确保所有文件都已正确安装,因为它需要几分钟才能根据您的选择安装所有依赖项。