angularjs生成器中的Coffeescript无法在控制台中找到js文件

时间:2013-11-26 01:34:45

标签: javascript angularjs coffeescript

我测试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

1 个答案:

答案 0 :(得分:0)

我执行了相同的命令,它运行正常。 当你运行

  

yo angular:contrller user --coffee

它应该创建两个文件

  create app/scripts/controllers/user.js
  create test/spec/controllers/user.js

并且在不更改app.js的情况下首先检查并查看是否可以运行

  

grunt服务器

我建议重新运行

  

yo angular

命令并确保所有文件都已正确安装,因为它需要几分钟才能根据您的选择安装所有依赖项。