我正在使用 Express 在 node.js 中编写一个 Web 应用程序。我已经定义了如下路线:
app.get("/firstService/:query", function(req,res){
//trivial example
var html = "<html><body></body></html>";
res.end(html)
});
如何从快递中重用该路线?
app.get("/secondService/:query", function(req,res){
var data = app.call("/firstService/"+query);
//do something with the data
res.end(data);
});
我在 API 文档中找不到任何东西,我宁愿不使用像“request”这样的另一个库,因为这看起来很笨拙。我试图让我的应用程序尽可能模块化。想法?
谢谢