接口测试 postman 怎么提取接口返回值,以便其它接口使用

sunchuanxin · 2017年05月31日 · 最后由 sunchuanxin 回复于 2017年06月01日 · 2598 次阅读

postman 怎么提取接口返回值,以便其它接口使用,求例子

共收到 2 条回复 时间 点赞

在 test 中将你要提取的值设置为环境变量,使用 postman.setEnvironmentVariable(variableName, variableValue)。
然后在要使用的接口中直接使用该环境变量即可,调用环境变量使用{{variableName}}

搞出来的示例
tests 中填写
var jsonData = JSON.parse(responseBody);
postman.setEnvironmentVariable("prd", jsonData.data[0].ip);
值的部分不要加引号

需要 登录 后方可回复, 如果你还没有账号请点击这里 注册