我正在使用 react-native-document-picker 表单使用以下代码从 Android 手机中选择文件
DocumentPicker.show({
filetype: [DocumentPickerUtil.images()],
},(error,res) => {
// Android
console.log(
res.uri,
res.type, // mime type
res.fileName,
res.fileSize
);
});
上面日志的输出就像
uri: 'content://com.android.providers.media.documents/document/image%3A48',
type: 'image/jpeg'
fileName: 'TestImage.jpeg'
fileSize: 5301
我如何在本机反应中获取上传文件的字节数组并将其作为输入发送到 web api 发布请求。