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

前端 未结 26 3525
庸人自扰
庸人自扰 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:10

    In Express it's already done for you and you can simply use req.query for that:

    var id = req.query.id; // $_GET["id"]
    

    Otherwise, in NodeJS, you can access req.url and the builtin url module to url.parse it manually:

    var url = require('url');
    var url_parts = url.parse(request.url, true);
    var query = url_parts.query;
    

提交回复
热议问题