Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
クエリ文字列は大文字と小文字が区別されるようです。大文字と小文字を区別しないクエリ文字列を使用することは可能ですか?
私の URL に が含まれている場合?Id=10、アクセスするとreq.query.idが返されますundefined。
?Id=10
req.query.id
undefined
そのままでは不可能ですが、非常に単純なミドルウェアを挿入して、たとえば のすべてのキーを小文字にすることができますreq.query。
req.query
// insert this before your routes app.use(function(req, res, next) { for (var key in req.query) { req.query[key.toLowerCase()] = req.query[key]; } next(); });