我在Express中遇到路由问题。这有效:
app.get('/customers/bar/:bar/buzz/:buzz', customers.foo);
即。像这样的请求匹配(返回200代码):
curl -is http://localhost:3000/customers/bar/blah/buzz/blah -H 'accept: text/plain'
但如何更改app.get(…)
以接受bar
的参数数组,例如匹配一个具有如下输入的表单:
<input type="text" name="bar[]" value="test1">
<input type="text" name="bar[]" value="test2">
<input type="text" name="bar[]" value="test3">
我在文档中看不到任何可以证明这是如何工作的内容。感谢。