从下面的响应中,我想获取“responseCode”的值并临时存储。如果值为 1,那么在控制台上,我想写“测试通过”。任何人都可以分享这个测试的代码吗?
{
"data":{
"transactionId":"$1"
},
"responseMessage":"Transaction successfully done. Transaction Id : txn_15594028419901124218",
"responseCode":1
}
我尝试使用以下代码来设置变量:
var jsonData = JSON.parse(responseBody);
pm.globals.set("responseCode",jsonData.data.responseCode);