Ionic file upload issue on iOS
Par sebastien galvagno le vendredi 1 mars 2019, 10:27 - Ionic - Lien permanent
The fileTransfert variable must be initialize in the platform.ready().then() method.
import { FileTransfer } from "@ionic-native/file-transfer"; import { Platform } from 'ionic-angular';
...
private fileTransfer: FileTransferObject;
...
constructor(public transfer: FileTransfer, public platform: Platform) { this.platform.ready().then( (ready)=>{ this.fileTransfer= this.transfer.create(); } ); }