相机插件无法在Ionic 4中打开相机

时间:2019-10-30 07:07:01

标签: javascript android angular ionic-framework

我正在研究Ionic 4中的一个项目。 我希望用户通过从相机捕获或从库上传来上传图片。目前,我正在开发模式下运行。问题是我无法在调试模式下打开设备上的相机或照片库。但是,当我在“ DEVAPP”上运行时,相机正在打开。我尝试获得许可,但没有任何解决方法。这是我的代码,尝试了多种方式,因此代码有点分散:

async selectImage() {
  try {
    const actionSheet = await this.actionSheetController.create({
        header: 'Select Image source',
        buttons: [{
                text: 'Load from Library',
                handler: () => {
                    this.takePicture(this.camera.PictureSourceType.PHOTOLIBRARY);
                }
            },
            {
                text: 'Use Camera',
                handler: () => {
                    this.takePicture(this.camera.PictureSourceType.CAMERA);
                }
            },
            {
                text: 'Cancel',
                role: 'cancel'
            }
        ]
    });
    await actionSheet.present();
  } catch (error) {
    alert(error);
  }
}

takePicture(sourceType: PictureSourceType) {
  const options: CameraOptions = {
      quality: 100,
      sourceType,
      saveToPhotoAlbum: false,
      correctOrientation: true
  };


  alert('i m n takepicture');

  this.androidPermissions.requestPermissions([this.androidPermissions.PERMISSION.CAMERA]).then(
    result => console.log('i am asking for permision: ' +  result),
    err => this.androidPermissions.requestPermission(this.androidPermissions.PERMISSION.CAMERA)
  );

  if (this.camera.PictureSourceType.CAMERA) {
  this.androidPermissions.checkPermission(this.androidPermissions.PERMISSION.CAMERA).then(
  result =>
  this.camera.getPicture(options).then(imagePath => {
      if (this.plt.is('android') && sourceType === this.camera.PictureSourceType.PHOTOLIBRARY) {
          this.filePath.resolveNativePath(imagePath)
              .then(filePath => {
                  const correctPath = filePath.substr(0, filePath.lastIndexOf('/') + 1);
                  const currentName = imagePath.substring(imagePath.lastIndexOf('/') + 1, imagePath.lastIndexOf('?'));
                  this.copyFileToLocalDir(correctPath, currentName, this.createFileName());
              }). catch((error) => {
                 console.warn('error: ' + error);
              });
      } else {
          const currentName = imagePath.substr(imagePath.lastIndexOf('/') + 1);
          const correctPath = imagePath.substr(0, imagePath.lastIndexOf('/') + 1);
          this.copyFileToLocalDir(correctPath, currentName, this.createFileName());
      }
  }),
  err => this.androidPermissions.requestPermission(this.androidPermissions.PERMISSION.CAMERA));
  } else {
    this.androidPermissions.checkPermission(this.androidPermissions.PERMISSION.PHOTOLIBRARY).then(
      result =>
      this.camera.getPicture(options).then(imagePath => {
          if (this.plt.is('android') && sourceType === this.camera.PictureSourceType.PHOTOLIBRARY) {
              this.filePath.resolveNativePath(imagePath)
                  .then(filePath => {
                      const correctPath = filePath.substr(0, filePath.lastIndexOf('/') + 1);
                      const currentName = imagePath.substring(imagePath.lastIndexOf('/') + 1, imagePath.lastIndexOf('?'));
                      this.copyFileToLocalDir(correctPath, currentName, this.createFileName());
                  });
          } else {
              const currentName = imagePath.substr(imagePath.lastIndexOf('/') + 1);
              const correctPath = imagePath.substr(0, imagePath.lastIndexOf('/') + 1);
              this.copyFileToLocalDir(correctPath, currentName, this.createFileName());
          }
      }),
      err => this.androidPermissions.requestPermission(this.androidPermissions.PERMISSION.PHOTOLIBRARY));
  }
}

1 个答案:

答案 0 :(得分:0)

尝试一下

takePicture(sourceType: PictureSourceType) {
const options: CameraOptions = {
    quality: 100,
    sourceType:sourceType,
    saveToPhotoAlbum: false,
    correctOrientation: true
};
 this.camera.getPicture(options).then(
  imageData => {
   ///DO YOUR LOGIC
  },
  err => { 
    // Handle error
  }
);

}