如何在节点中编写多个方法(路径)。 例如,我将在localhost:8080运行节点服务器。
然后我的网址看起来像localhost:8080 / getinfo,localhost:8080 / contactus等。
答案 0 :(得分:1)
您需要开始使用路线。尝试这样的事情。
app.get('/methodName', function(req, res) {
res.render('ViewFile.ejs');
});
将其添加到您的server.js
文件中。另外,我会超级建议express!