1、全局变量 环境变量 测试集变量
{{variable}}
2、测试脚本
pm.test("Status code is 200", function () { pm.response.to.have.status(200); });
3、发送前的脚本
pm.globals.set("filter", "user-1");
4、工作流 用test脚本来实现
postman.setNextRequest('Postman Echo PUT')
5、取出数据塞入全局变量
var jsonData = pm.response.json();
// Extracting the token from the response and setting it as a global variable.
pm.globals.set("newToken", jsonData.headers['postman-token']);