当前位置:网站首页>postman将接口返回结果生成json文件到本地
postman将接口返回结果生成json文件到本地
2022-08-03 06:25:00 【梵晞】
postman将接口返回的结果除了可以【生成csv文件】到本地还可以生成json文件。具体操作如下:
一样的模拟接口返回批量参数值,测试代码如下:
@Slf4j
@RestController
@RequestMapping("/index")
public class IndexController {
@PostMapping("/testGetParams")
private BizResponse<List<WarehouseDto>> testGetParams() {
List<WarehouseDto> warehouseDtoList = new ArrayList<>();
WarehouseDto warehouseDto1 = new WarehouseDto();
warehouseDto1.setId(1L);
warehouseDto1.setDescription("test1");
warehouseDtoList.add(warehouseDto1);
WarehouseDto warehouseDto2 = new WarehouseDto();
warehouseDto2.setId(2L);
warehouseDto2.setDescription("test2");
warehouseDtoList.add(warehouseDto2);
return ResponseUtil.success(warehouseDtoList);
}
}
这个接口返回的数据结构如下:
{ "status":1, "code":"10000", "data":[ { "id":1, "description":"test1" }, { "id":2, "description":"test2" } ] }
postman中新建request,并测试将请求返回结果生成json文件,步骤:
1、添加接口请求url以及请求参数Body
2、在Tests中添加以下代码:
var data = pm.response.json().data;//拿到的这个数据:[ { "id":1, "description":"test1" }, { "id":2, "description":"test2" } ]
console.log(data);
var dataStr = '[';
for(var i=0;i<data.length;i++){
dataStr+= '{"id":' + data[i].id + ',"description":"' + data[i].description + '"}' + (i==data.length-1?'':',');
}
dataStr+= ']';//只提取需要生成json文件的属性值,组装成数组
console.log(dataStr);
let opts = {
requestName: request.name || request.url,
fileExtension: 'json',//这个和csv文件配置不一样
mode: 'writeFile',//这个和csv文件配置不一样
uniqueIdentifier: false,
responseData: dataStr
};
pm.sendRequest({
url: 'http://localhost:3000/write',
method: 'POST',
header: 'Content-Type:application/json',
body: {
mode: 'raw',
raw: JSON.stringify(opts)
}
}, function (err, res) {
console.log(res);
});
其他的就是启动postman本地服务,(可参考生成csv文件配置本地服务步骤)。调用接口可以看到接口调用完后执行的write生成文件,在项目目录下C:\soft\ResponseToFile-Postman\Responses下可以看到生成的json文件
边栏推荐
猜你喜欢
【着色器实现HandDrawn简笔画抖动效果_Shader效果第十二篇】
Getting Started with Chrome Plugin Development
Nacos下载与安装
Cesium loads offline maps and offline terrain
用代码构建UI界面
调用feign报错openfeign/feign-core/10.4.0/feign-core-10.4.0.jar
华为设备配置BFD状态与接口状态联动
torch.nn.modules.activation.ReLU is not a Module subclass
El - tree set using setCheckedNodessetCheckedKeys default check nodes, and a new check through setChecked specified node
学会可视化大屏布局技巧,让领导都赞不绝口
随机推荐
qt学习之旅--MinGW编译FFmpeg(32bit)
(十五)51单片机——呼吸灯与直流电机调速(PWM)
华为设备配置BFD单跳检测二层链路
多线程打印ABC(继承+进阶)
Chrome 配置samesite=none方式
第四章:架构,Architecture
【卫朋】硬件创业:营销与开发同行
多线程案例
商业智能BI业务分析思维:供应链分析 – 如何控制牛鞭效应(二)
信息学奥赛一本通T1451:棋盘游戏
Example of embedding code for continuous features
信息学奥赛一本通T1453:移动玩具
keepalived安装部署
一文搞懂什么是@Component和@Bean注解以及如何使用
七夕和程序员有毛关系?
El - table column filter functions, control columns show and hide (effect and easy to implement full marks)
海思项目总结
QT信号与槽
1066 Root of AVL Tree // AVL平衡二叉搜索树模板
最新版图书馆招聘考试常考试题重点事业单位