# app.get "/example", example.index
# require("./routes/index") app
我知道我的第一行是我的控制器,名为example并使用索引函数。 我不确定第二行的作用。这个比那个好吗?完整的解释将不胜感激。
答案 0 :(得分:0)
第一行:app.get "/example", example.index
表示如果有人点击了网址http://localhost:3000/example
,那么您正在加载example
文件(大概是require
d以上)并运行index
就可以了。
第二行require("./routes/index") app
只是require
index.coffee
文件夹中名为routes
的文件,并将app
作为变量传递。