如何在 Expo React Native 中将 base64 转换为字节?

How to convert base64 to bytes in Expo React Native?

我正在尝试将图像从图像选择器发送到服务器,但图像选择器 returns 只能使用 base64。

如何使用 expo 在 React-Native 中将 base64 转换为字节?

所以我的解决方案是 'Buffer'。

可以导入为:

import { Buffer } from "buffer";

那么您需要做的就是:

let your_bytes = Buffer.from(your_base64, "base64");