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

问题描述 投票:0回答:1

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

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

ionic-framework ionic3 ionic-native ionic-plugins
1个回答
0
投票

我想你正在使用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) => {
© www.soinside.com 2019 - 2024. All rights reserved.