我尝试向我的服务器发送请求,其中包含带有Json(密钥和值)的数据。
我看到当我在邮递员中选择GET方法时,没有选项可以添加数据。
这是我要在服务器端检查的内容:
app.get('/downloadWithJson', function(req, res){
var parseJson = qs.parse(req);
console.log('static file request : ' + parseJson.fileName);
});
我该如何检查?
答案 0 :(得分:2)
是的,你可以通过在请求标题中包含Content-Type键并将其设置为application / json,使用post方法将json发送到您的web api。