如何用快递中的params写请求的url?

时间:2017-09-17 13:11:27

标签: node.js express

我想为这种类型的网址发出请求:

http://localhost:9000/data?start-time=1234124

我想在ExpressJS中定义路线:

app.get("/data",function(req,res){
})

如何在url中设置参数启动时间?

谢谢:)

1 个答案:

答案 0 :(得分:0)

查询字符串参数包含在req.query对象中。如果你想获得开始时间,试试这个:

app.get("/data", function(req, res) {
  let startTime = req.query['start-time'];
});