在express.js中只匹配6个哈希符号的路径模式

path pattern which matches only 6 symbols hashes in express.js

本文关键字:符号 哈希 路径 模式 6个 js express      更新时间:2023-09-26

有没有可能写出这样的模式:

.get('/:pattern' ...

只匹配6个符号哈希?我怎么能得到这个哈希内部处理函数?示例:mBe8s0

app.get('/:pattern([A-Za-z0-9]{5}$)', function (req, res){
    res.send(req.params.pattern);
});