一、postman
在Tests中输入以下代码,发送接口后,在Console中查看解码后的结果;
代码如下:
pm.test('urlDecode',function() {
var urlDecode = decodeURIComponent(responseBody);
var jsObj = JSON.parse(urlDecode);
var str = JSON.stringify(jsObj, null, 4);
console.log(str);
} );
同样,如果需要解码两次,代码如下:
pm.test('urlDecode',function() {
var urlDecode = decodeURIComponent(responseBody);
var urlDecode2 = decodeURIComponent(urlDecode);
var jsObj = JSON.parse(urlDecode2);
var str = JSON.stringify(jsObj, null, 4);
console.log(str);
} );
原帖:Postman自动格式化输出Url编码后的Json数据
jmeter,见上期文章来源:https://www.toymoban.com/news/detail-820385.html
apifox,见下期文章来源地址https://www.toymoban.com/news/detail-820385.html
到了这里,关于postman如何将响应数据URL解码处理的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!