我想从我的React Native应用程序上传doc和pdf文件。我使用了React Native文档选择器,但它可与iCloud一起使用,我想从文件管理器中选择文件。
这是我的代码:
import { DocumentPicker, DocumentPickerUtil } from 'react-native-document-picker';
selectFile(type,index='') {
DocumentPicker.show({
filetype: [DocumentPickerUtil.allFiles()],
},(error,res) => {
console.log(
res.uri,
res.type, // mime type
res.fileName,
res.fileSize
);
});
}