📅  最后修改于: 2023-12-03 14:44:46.005000             🧑  作者: Mango
如果你需要在 JavaScript 代码中将二进制数据转换为可读字符串形式,那么 npm base64 库就是你的好帮手。
首先,使用以下命令安装 base64 库:
npm install base64 --save
使用 base64.encode()
方法将二进制数据编码为对应的字符串:
const base64 = require('base64');
const binaryData = new Uint8Array([72, 101, 108, 108, 111, 32, 87, 111, 114, 108, 100]); // Hello World
const encodedData = base64.encode(binaryData);
console.log(encodedData);
// SGVsbG8gV29ybGQ=
使用 base64.decode()
方法将 base64 编码的字符串解码为对应的二进制数据:
const base64 = require('base64');
const encodedData = 'SGVsbG8gV29ybGQ=';
const binaryData = base64.decode(encodedData);
console.log(binaryData);
// Uint8Array [72, 101, 108, 108, 111, 32, 87, 111, 114, 108, 100] (Hello World)
npm base64 库提供了方便的方式来处理二进制数据,让我们能够在 JavaScript 中轻松地进行数据的传输和解析。