React Native 环境中,使用 base-64 库来进行 Base64 编码
import { Base64 } from 'base-64';
// 编码字符串为 Base64
const encodedString = Base64.encode('Hello, World!');
console.log(encodedString); // 输出编码后的字符串
// 解码 Base64 字符串
const decodedString = Base64.decode(encodedString);
console.log(decodedString); // 输出解码后的字符串
这段代码演示了如何在 React Native 项目中使用 base-64 库来进行 Base64 编码和解码。首先导入库中的 Base64 类,然后使用其静态方法 .encode()
进行编码,.decode()
进行解码。这是一个简单的例子,展示了如何在实际应用中使用 Base64 库。
评论已关闭