本文介绍了在POST有效负载中使用环境变量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我可以在发布的有效载荷中使用先前测试中设置的环境变量吗?
Can I use environment variables set in a previous test in the payload I am posting?
例如。
POST /list
{
"some_key": environment.saved_value
}
推荐答案
是的,您可以这样做。您可以像这样发送它
Yes, you can do that. You send it up like this
{
"some_key" : "{{environment_variable_name}}"
}
因此,如果在之前的测试中已将其设置为
So, if in your previous test you had set it with something like
postman.setEnvironmentVariable("id","some_value")
您可以在POST中使用
You can use it in your POST with
{
"some_key" : "{{id}}"
}
希望能回答您的问题
这篇关于在POST有效负载中使用环境变量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!