反应原生的最佳文件选择器

时间:2018-03-29 05:21:33

标签: react-native react-native-android react-native-ios

我已经尝试了String currentDate = dateFormat.format(currentLocalTime); String localTime = date.format(currentLocalTime);// to get the time zone i have used this. String newtime=currentDate+localTime;// and then i have apeend this now print log you will get the desire result. 等等但是没有一个能正常工作。任何人都可以建议我react-native-file-picker, react-native-file-chooser, react-native-document-chooser从设备存储中选择文件。

2 个答案:

答案 0 :(得分:7)

根据个人意见,我使用react-native-document-picker

他们installation

中提及了usagedocs

目前它支持file upload

所需的大多数一般用例
  • 所有类型的文件'public.allFiles'或 DocumentPickerUtil.allFiles()
  • 仅限PDF'public.pdf'或DocumentPickerUtil.pdf()
  • 音频'public.audio'或DocumentPickerUtil.audio()
  • 纯文本'public.plainText'或DocumentPickerUtil.plainText()

其他限制可以根据file type option修改,因为它提供了以下file res选项

         res.uri,
         res.type, // mime type
         res.fileName,
         res.fileSize

答案 1 :(得分:0)

我使用react-native-file-picker,因为它可以选择手机中的所有文件。 但是react-native-document-picker选择的文件非常有限