gpt4 book ai didi

javascript - 如何在 react-native-document-picker 中将 PDF 转换为 base64?

转载 作者:行者123 更新时间:2023-12-04 15:08:54 27 4
gpt4 key购买 nike

我想将 react-native-document-picker 的响应转换为 base64 格式。作为回应,我得到了文件的 Uri,但不幸的是没有 base64。
这是我的代码:

const openDocumentFile = async () =>{
try {
const results = await DocumentPicker.pickMultiple({
type: [DocumentPicker.types.pdf],
readContent: true
});
for (const res of [results]) {

console.log(res)

};

} catch (err) {
if (DocumentPicker.isCancel(err)) {
} else {
throw err;
}
}
} ```


最佳答案

你可以使用一个这个库
react-native-image-base64
或者
rn-fetch-blob

import RNFetchBlob from 'rn-fetch-blob';

RNFetchBlob.fs
.readFile(filePath, 'base64')
.then((data) => {
setdata(data);
})
.catch((err) => {});

关于javascript - 如何在 react-native-document-picker 中将 PDF 转换为 base64?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65565447/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com