JS将字符串转为base64

const encodedData = window.btoa("Hello, world"); // 编码字符串
const decodedData = window.atob(encodedData); // 解码字符串
posted on 2024-11-11 16:08  贲风  阅读(153)  评论(0编辑  收藏  举报