如何解析来自 XML 格式的 Postman 正文响应

问题描述 投票:0回答:1
xml api postman
1个回答
0
投票

也许

xml2js
可以解决你的问题。 这是示例代码:

const xml2js = require('xml2js');   
xml2js.parseString(pm.response.text(), function (err, result) {
    console.log(result);
});
© www.soinside.com 2019 - 2024. All rights reserved.