我的路由器如下所示:
app.get('/getReport', (req, res) => {
res.send("This is the report");
});
上面的路由器工作正常,浏览器已加载
This is the report
但是当我这样做时:
// Filename: router.js
const getReport = require('./getReportController');
app.get('/getReport', (req, res) => {
getReport.initial
});
和
// Filename: getReportController.js
exports.initial = (req, res) => {
res.send("This is the report");
};
它不起作用并且一直在等待...
可能出了什么问题?我的目标是调用控制器组件,然后将其添加到路由器端点。一旦解决,我将添加
middleware
。 最佳答案
我相信您想要的是:
app.get('/getReport', getReport.initial);
您只是在按照自己的方式读取功能块中的功能。
关于javascript - Node/Express:将中间件添加到路由器不会加载,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54638577/