当我尝试使用Cordova相机插件从下载文件夹访问图像时获取空文件路径

时间:2019-07-11 07:42:05

标签: cordova ionic-framework file-upload cordova-plugins ionic4

我在项目中实现了文件上传,并且工作正常,但是当我尝试从下载文件夹中获取图像时,我将文件路径获取为空吗?这是我正在使用的代码

this.fileProv.doc_capture('ALLMEDIA').then((filePath: string) => {
           if (this.titleVal == undefined) {
        this.titleVal = '';

      }
      this.fileProv.upload(filePath, 'prop_upload', this.propId, this.titleVal).subscribe((res: any) => {
        const data = JSON.parse(res.response);
        this.PropertyData.document.push(data.data);
        this.title = '';
        this.titleVal = '';
        this.cmnFunc.loadoff();
        this.transProv.commonShowToast(data.message[this.transProv.curLang], 3000, 'top', 'toast.close');
      }, err => {

        this.cmnFunc.loadoff();
      'top', 'toast.close');
      })
    }).catch(error => {
      this.cmnFunc.loadoff();
    })

0 个答案:

没有答案