我在我的Ionic应用程序中使用图像选择器插件。我希望能够从Android设备中的库中的其他文件夹中选择图像。对于Ios它是可能的但是对于android我得到了这个观点。
但我希望用户能够转到其他文件夹并从中选择图像。任何帮助都会很棒。
我想你正在使用cordova插件File
。如果你想选择其他路线,你可以使用File
提供的差异目录。 EJ:
this.file.applicationStorageDirectory
this.file.applicationDirectory
this.file.documentsDirectory
你有完整的清单https://github.com/apache/cordova-plugin-file 如果您需要更多帮助,请告诉我。
使用if使用Filepicker使用常量来设置选项:
const options = {
title: 'Select Avatar',
customButtons: [{ name: 'fb', title: 'Choose Photo from Facebook' }],
storageOptions: {
skipBackup: true,
path: 'images',
},
};
并将其发送给选择器:
ImagePicker.showImagePicker(options, (response) => {