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.
いくつかのコードがあります:
app.get(/^\/test\?sid$/, function (req, res) { console.log('sid: ', req.params[0]); res.sendfile(__dirname + '/public/login/index.html'); });
出力:
Cannot GET /test?sid
Express のルーターは、クエリ文字列を含む URL 全体ではなく、パス名のみと照合します。
正規表現にはキャプチャ グループreq.paramsがないため、設定されません。
req.params