This page was saved using WebZIP 7.1.2.1052 offline browser on 02/12/23 22:27:19.
Address: /docs/zh/v8/base64.html
Title: base64 | Auto.js Pro文档  •  Size: 24543  •  Last Modified: Sun, 12 Feb 2023 12:58:09 GMT

base64

2022年10月22日

base64

提供基本的Base64转换函数。

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

** [Pro 7.0.4新增open in new window] **

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

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

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

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

** [Pro 7.0.4新增open in new window] **

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

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

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