Postman - 如何将全局变量传递给JSON主体

时间:2016-03-30 11:29:15

标签: json rest request postman

我现在正在与Postman合作,我必须做很多请求,并在body我传递JSON内容。我想知道是否有办法将全局变量的值传递给JSON体。谢谢。

5 个答案:

答案 0 :(得分:61)

如果使用原始JSON正文:

{
    "test key":"{{global variable}}"
}

在发送请求时,花括号将替换为变量的值。

答案 1 :(得分:6)

我认为你要做的是here

  

要使用变量,您需要使用双花括号括起变量名称 - {{my_variable_name}}。

答案 2 :(得分:4)

双花括号在header参数,url或JSON主体内部工作。在内部测试中,您应该使用globals示例:{"url": globals.url}{"url": globals["url"]}

答案 3 :(得分:1)

是的,大括号是实现此目的的方法-确保您拥有最新版本的Postman(尽管在引入此功能时仍在运行2014代码,请您感到羞耻!)

例如:

`:t/ set delete v3 from t

请参阅文档“变量”部分的第二段here-它专门提到了neuron1 = data[:, 1] neuron2 = data[:, 2] hist_2d = np.zeros((100, 100)) for neuron1_output in neuron1: for neuron2_output in neuron2: hist_2d[int(100 * neuron1_output), int(100 * neuron2_output)] += 1

答案 4 :(得分:0)

您可以通过

{
   "productId": {{**ProductID**}},
   "quantity": 1
}

ProductID 是您的全局变量名称
原始格式JSON(application / json)