我在我的快递应用上定义了多个端点。
一个端点类似如下:
app.route('/v2/api/pdf/:month?')
.get((req, res, next) => {
// implementation
});
app.param('month', (req, res, next, month) => {
// when month is empty, it never comes here.
});
我知道我可以验证端点回调上month
是否为空,但是如果我有多个具有不同段的端点并希望处理单个地方空的情况怎么办?我可以不使用app.use
中间件吗?