const response = pm.response.json();
// display all data
console.log(JSON.stringify(response.branches));
let onlyIds = response.branches.map(item => (item.branchId))
// display only ids after filtered
console.log(JSON.stringify(onlyIds));
pm.globals.set("onlyIds", JSON.stringify(onlyIds));
1条答案
按热度按时间kgsdhlau1#
我认为您只需要获得
branchId
和make to数组,然后应用下一个POST调用的输入。这是服务器的演示
字符串
安装依赖项
型
运行服务器
型
通过 Postman 调用获取数据API
型
获取结果
的数据
过滤并保存到数组变量中
在
Tests
选项卡上型
的
如果用这个测试脚本再次调用GET API它将显示在控制台中并将它保存到一个数组数据中。
的
的
最后,它将在POST调用的Body中使用用于数组的输入。
body的结果将显示,因为'Flash'服务器将返回与body的结果相同的输入body。
在主体的输入中访问数组数据
型
的