我有一个url,其中包括了问号,比如说http://localhost:3000/auth?code=13579, 要怎样设定路由正确的进行匹配呢?
以下几种我试过都没有用
- app.get("/auth?code=:code", function(req, res) {…});
- app.get("/auth?code=:code", function(req, res) {…});
- app.get(//auth?code=:code/, function(req, res) {…});
我有一个url,其中包括了问号,比如说http://localhost:3000/auth?code=13579, 要怎样设定路由正确的进行匹配呢?
以下几种我试过都没有用