我尝试向我的服务器发送一个请求,其中包含带有 Json 的数据(键和值)。
我看到当我在postman中选择GET方法时,没有添加数据的选项。
这是我想在服务器端检查的内容:
app.get('/downloadWithJson', function(req, res){
var parseJson = qs.parse(req);
console.log('static file request : ' + parseJson.fileName);
});
我怎样才能检查它?