跳到主要内容

自定义响应参数

自 7.0.13 版本起,Apipost 支持在后执行脚本里对响应数据进行二次加工。例如你的响应内容如下:

https://img.cdn.apipost.cn/cdn/2023autotest/8.png

你可以通过在接口的 后执行脚本 中,通过如下脚本使响应json中的 data.time 字段转换为格式化的日期。

let res = JSON.parse(response.raw.responseText);
res.data.time = dayjs(res.data.time).format("YYMMDD")
apt.response.raw.responseText = JSON.stringify(res)

效果如下图:

https://img.cdn.apipost.cn/cdn/2023autotest/7.png

底层原理

response.raw.responseText 代表的是响应的原始文本数据,我们主要是通过修改 response.raw.responseText 来实现响应结果的二次加工。

注意

这种方法仅用于改变 Apipost 响应区的数据展示。不会实际影响断言、以及控制台的响应打印结果。