我可以用邮递员或其他互联网工具发送Json吗?

时间:2014-04-23 07:09:45

标签: json postman

我尝试向我的服务器发送请求,其中包含带有Json(密钥和值)的数据。

我看到当我在邮递员中选择GET方法时,没有选项可以添加数据。

这是我要在服务器端检查的内容:

app.get('/downloadWithJson', function(req, res){
  var parseJson = qs.parse(req);
  console.log('static file request : ' + parseJson.fileName);
});

我该如何检查?

1 个答案:

答案 0 :(得分:2)

是的,你可以通过在请求标题中包含Content-Type键并将其设置为application / json,使用post方法将json发送到您的web api。