Node.js Express使用require vs app.get

时间:2013-03-15 18:32:16

标签: node.js express coffeescript

# app.get "/example", example.index

# require("./routes/index") app

我知道我的第一行是我的控制器,名为example并使用索引函数。 我不确定第二行的作用。这个比那个好吗?完整的解释将不胜感激。

1 个答案:

答案 0 :(得分:0)

第一行:app.get "/example", example.index表示如果有人点击了网址http://localhost:3000/example,那么您正在加载example文件(大概是require d以上)并运行index就可以了。

第二行require("./routes/index") app只是require index.coffee文件夹中名为routes的文件,并将app作为变量传递。