具有多个方法/路径的节点服务器

时间:2013-11-15 06:41:45

标签: node.js

如何在节点中编写多个方法(路径)。 例如,我将在localhost:8080运行节点服务器。

然后我的网址看起来像localhost:8080 / getinfo,localhost:8080 / contactus等。

1 个答案:

答案 0 :(得分:1)

您需要开始使用路线。尝试这样的事情。

app.get('/methodName', function(req, res) {
  res.render('ViewFile.ejs');
});

将其添加到您的server.js文件中。另外,我会超级建议express