nodejs对字符串进行base64转换和解析
2021-04-14 04:27
阅读:493
标签:方法 style new 字符 base64 rto 转换方法 oba code nodejs不支持使用atob和btoa 进行字符串base64转换,转换方法如下: nodejs对字符串进行base64转换和解析 标签:方法 style new 字符 base64 rto 转换方法 oba code 原文地址:https://www.cnblogs.com/beileixinqing/p/12378229.html
// 转为base64
var strToBase64 = new Buffer(‘aaabbbccc‘).toString(‘base64‘);
// base64反解析为字符串
var base64ToStr = new Buffer(str , ‘base64‘).toString();
下一篇:html文件如何下载文件
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:nodejs对字符串进行base64转换和解析
文章链接:http://soscw.com/index.php/essay/75503.html
文章标题:nodejs对字符串进行base64转换和解析
文章链接:http://soscw.com/index.php/essay/75503.html
评论
亲,登录后才可以留言!