我可以将foxx与咖啡脚本一起使用,但它不起作用。我从逐步教程中有一个hello示例应用程序。我将app.js
替换为app.coffee
(在编译后coffee -c app.coffee
与app.js
相同)
在manifest.json中,我在cotrollers中更改扩展名
{
"name": "moje",
"version": "0.0.1",
"description": "Hello example.",
"author": "golf",
"controllers": {
"/": "app.coffee"
}
}
但它不起作用,服务器返回
{"error":true,"code":404,"errorNum":404,"errorMessage":"unknown path 'dev/moje/hello/world'"}
我做错了什么?