使用Android(Ionic 3)中的ImagePicker插件重定向到其他图像文件夹中的视图

时间:2019-03-06 11:55:38

标签: ionic-framework ionic3 ionic-native ionic-plugins

我在Ionic应用程序中使用图像选择器插件。我希望能够从android设备中的库中从其他文件夹中选择图像。对于Ios,这是可能的,但对于android,我得到此视图。 enter image description here

但是我希望用户能够转到其他文件夹并从中选择图像。任何帮助都会很棒。

1 个答案:

答案 0 :(得分:0)

我想您正在使用Cordova插件File。如果要选择其他路由,则可以使用File提供的不同目录。 EJ:

this.file.applicationStorageDirectory
this.file.applicationDirectory
this.file.documentsDirectory

您在此处拥有完整列表https://github.com/apache/cordova-plugin-file
如果您需要更多帮助,请对我说。


在With Filepicker中使用常量来设置选项时使用:

const options = {
  title: 'Select Avatar',
  customButtons: [{ name: 'fb', title: 'Choose Photo from Facebook' }],
  storageOptions: {
    skipBackup: true,
    path: 'images',
  },
};

并将其发送到选择器:

ImagePicker.showImagePicker(options, (response) => {