base64

2022年10月22日

base64

提供基本的Base64转换函数。

$base64.encode(str, encoding = 'utf-8')

** [Pro 7.0.4新增] **

  • str {string} 要编码的字符串
  • encoding {string} 可选,字符编码

将字符串str使用Base64编码并返回编码后的字符串。

console.log($base64.encode('test')); // 打印dGVzdA==

$base64.decode(str, encoding = 'utf-8')

** [Pro 7.0.4新增] **

  • str {string} 要解码的字符串
  • encoding {string} 可选,字符编码

将字符串str使用Base64解码并返回解码后的字符串。

console.log($base64.decode('dGVzdA==')); // 打印test
上次编辑于:
贡献者: Bruce