我想为这种类型的网址发出请求:
http://localhost:9000/data?start-time=1234124
我想在ExpressJS中定义路线:
app.get("/data",function(req,res){
})
如何在url中设置参数启动时间?
谢谢:)
答案 0 :(得分:0)
查询字符串参数包含在req.query
对象中。如果你想获得开始时间,试试这个:
app.get("/data", function(req, res) {
let startTime = req.query['start-time'];
});