我知道如果我传递如下 URL:
http://localhost:3000/customer?companyid=300&customerid=200
然后我可以在 ExpressJS 中使用以下内容来提取数据:
res.send(util.format('You are looking for company: %s customer: %s', req.query.companyid, req.query.customerid));
但是,我想遍历参数并处理它们,而不必在我的查询中预定义它们。我似乎无法在 Express API 等中找到任何似乎有效的东西(可能正在查看它)。
http://localhost:3000/customer?companyid=300&customerid=200&type=employee
任何意见/建议将不胜感激!
谢谢,
小号