Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have to following route:

app.get("/download/:id/:name?",function(req,res){});

How can I make the last slash in the url optinal, if the param "name" is not given? For example, a request "/download/abc" wouldn't match this route. It would have to be "/download/abc/". Is there way to make "/download/abc" match?

share|improve this question
2  
Actually, it will match. Express does this automatically. It's not super-clear from the docs, but check the regex in req.route -- or just try it yourself! – Linus G Thiel Jan 28 at 10:58
You guy are right :) My fault... the question does not make sense xD – Van Coding Jan 28 at 17:04

1 Answer

app.get("/download/:id/:name?*", ...);    

This works for download/parameter, but also for download/parameter/anotherparameter/...

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.