我正在为 Express 中的路由而苦苦挣扎。这有效:
app.get('/customers/bar/:bar/buzz/:buzz', customers.foo);
ie 请求这样的匹配(返回 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">
我在文档中看不到任何说明这将如何工作的内容。谢谢。