PhpStorm / WebStorm REST客户端:简单的方式发送JSON?

时间:2017-07-19 00:41:57

标签: json rest phpstorm webstorm

在2017年版本的PhpStorm / WebStorm中,我们可以使用REST客户端发送请求和分析响应。

默认情况下,当我发送POST并使用UI中的简单表单创建请求参数时,参数格式为x-www-form-urlencoded

enter image description here

instrument=JPY&id=6

我想以JSON格式发送数据。所以我想如果我添加content-type: application/json标题,IDE会相应地格式化请求参数,但它没有。

目前我看到以JSON格式发送内容的唯一方法是自己制作JSON并将其放在IDE的Request Body as Text部分

enter image description here

我错过了发送JSON的简单方法吗?

3 个答案:

答案 0 :(得分:2)

你没有错过它,它还没有。请投票:https://youtrack.jetbrains.com/issue/WEB-17342

答案 1 :(得分:2)

您可以发送JSON正文:

  1. 添加Content-Type: application/json标题。
    1. 将JSON添加为文本:

答案 2 :(得分:0)

或者,您可以使用HTTP client in PhpStorm code editor在2017年宣布的the blog