Postman response base64转json
在用postman调试接口时,后端约定返回的内容全部base64编码格式返回,这样我们自己测试的时候非常不方便。我们可以利用postman的Visualize功能自动帮我转成json格式,(其他格式也可以,反正就是返回的body随便处理)方便调试
打开postman的Test选项卡:输入以下代码
pm.visualizer.set(`
<pre id="response" style="font-size:12px;"/>
<script src=".1.9/crypto-js.min.js"></script>
<script>
pm.getData((err, data) => {temp = CryptoJS.enc.Base64.parse(data.response); // 解析base64decodeStr = temp.toString(CryptoJS.enc.Utf8)jsonObj = JSON.parse(decodeStr) // 将base64转为jsondocument.getElementById("response").innerHTML = JSON.stringify(jsonObj, null, 2);
});
</script>
`, {response: pm.response.text()
});
运行查看结果:
Postman response base64转json
在用postman调试接口时,后端约定返回的内容全部base64编码格式返回,这样我们自己测试的时候非常不方便。我们可以利用postman的Visualize功能自动帮我转成json格式,(其他格式也可以,反正就是返回的body随便处理)方便调试
打开postman的Test选项卡:输入以下代码
pm.visualizer.set(`
<pre id="response" style="font-size:12px;"/>
<script src=".1.9/crypto-js.min.js"></script>
<script>
pm.getData((err, data) => {temp = CryptoJS.enc.Base64.parse(data.response); // 解析base64decodeStr = temp.toString(CryptoJS.enc.Utf8)jsonObj = JSON.parse(decodeStr) // 将base64转为jsondocument.getElementById("response").innerHTML = JSON.stringify(jsonObj, null, 2);
});
</script>
`, {response: pm.response.text()
});
运行查看结果:
发布评论