标签: express
是否可以在Express中使用路径的可变参数?
如:
app.get(" /:foo /(*:bar)",(req,res)=> {
并要求http://hostname/a/b/c/d
// foo =" a" // bar = [" b"," c"," d"]