I have an array like this.
["file:///data/user/0/io.ionic.starter/files/1542283317507.jpg",null,
"file:///data/user/0/io.ionic.starter/files/1542283320931.jpg"]
I'm trying to send this array(name's final) via fileTransfer upload function. But it returns error. Btw it's workin' for single image which out of array. How can i send that's array.
fileTransfer.upload(final, url, options).then(
data => {
console.log(data);
this.presentToast("Image succesful uploaded.");
},
err => {
this.presentToast("Error while uploading file.");
}
);
}
Thanks for helping!