概述
base64加解密
- base64 加密
- base64 解密
base64 加密
- 加密
function base64Encode( target : any){
let Base64 = require('js-base64').Base64
if( isEmpty(target)){
return ' '
}
return Base64.encode( target )
}
base64 解密
- 解密
function base64Decode( target : any){
let Base64 = require('js-base64').Base64
if( isEmpty(target)){
return ' '
}
return Base64.decode( target )
}
isEmpty方法
function isEmpty( target :any ) {
return !target
}
最后
以上就是幸福板凳为你收集整理的你必须要知道的base64加解密方法base64 加密base64 解密的全部内容,希望文章能够帮你解决你必须要知道的base64加解密方法base64 加密base64 解密所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复