Hello,
I want to select multiple files and upload them. Selecting 1 file and uploading works file. I came across cordova-imagePicker plugin which allows you to select multiple images.
Where should I put the FileUpload logic ?
Thanks!
I want to select multiple files and upload them. Selecting 1 file and uploading works file. I came across cordova-imagePicker plugin which allows you to select multiple images.
window.imagePicker.getPictures(
function(results) {
for (var i = 0; i < results.length; i++) {
console.log('Image URI: ' + results[i]);
}
}, function (error) {
console.log('Error: ' + error);
}
);
Where should I put the FileUpload logic ?
Thanks!

