我在项目中实现了文件上传,并且工作正常,但是当我尝试从下载文件夹中获取图像时,我将文件路径获取为空吗?这是我正在使用的代码
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();
})