How to get GET (query string) variables in Express.js on Node.js?

前端 未结 26 3555
庸人自扰
庸人自扰 2020-11-21 23:53

Can we get the variables in the query string in Node.js just like we get them in $_GET in PHP?

I know that in Node.js we can get the URL in the request.

26条回答
  •  遥遥无期
    2020-11-22 00:21

    Since you've mentioned Express.js in your tags, here is an Express-specific answer: use req.query. E.g.

    var express = require('express');
    var app = express();
    
    app.get('/', function(req, res){
      res.send('id: ' + req.query.id);
    });
    
    app.listen(3000);
    

提交回复
热议问题