如何访问 Postman 中的原始数据(请求部分)?

how to access raw data in Postman(Request section)?

所以我想通过 Postman 控制台将客户端名称和客户端电子邮件作为字符串值打印出来,但是当我调用该方法时,我得到一个数组,但具有未定义的值。

const res = pm.response.json();
const req = pm.request.toJSON();
let user = [req.body.raw.clientName, req.body.raw.clientName];
console.log(user);

非常感谢!

您可以使用以下方式获取原始请求正文:

pm.request.body.raw

例如:

您在邮递员中有请求正文:

{
    "foo": "bar"
}

您想在选项卡测试中访问 foo 的值:

const req = JSON.parse(pm.request.body.raw)
console.log(req.foo);