postman pre-request script 将 application/x-www-form-urlencoded 格式转换成数组
时间: 2023-07-29 15:13:23 浏览: 200
postman-util-lib:可以从Postman Pre-request和Tests脚本选项卡中使用的加密实用程序库
可以使用以下代码将 `application/x-www-form-urlencoded` 格式的数据转换为 JavaScript 对象:
```javascript
// 将请求体中的数据解析为对象
const params = new URLSearchParams(pm.request.body.urlencoded);
// 将对象转换为数组
const arrayParams = Array.from(params);
```
可以将上述代码放在 Pre-request Script 中,即可将请求体中的数据转换为数组格式。
阅读全文