postman 如何将 response base64 解码呢
Postman 的 Tests 和 Pre-request Script 里都可以使用 CryptoJS 这个库
//Encode var words = CryptoJS.enc.Utf8.parse('Hello CryptoJS'); var base64 = CryptoJS.enc.Base64.stringify(words); console.log(base64); //Decode let parsedWords = CryptoJS.enc.Base64.parse(base64); let parsedString = parsedWords.toString(CryptoJS.enc.Utf8); console.log(parsedString);
楼主,你知道怎么对返回的数据进行 base64 解码吗
https://www.getpostman.com/docs/postman/scripts/test_examples