Я новичок в NativeScript-Vue. В моем приложении есть функция загрузки изображений, для этого я использую nativescript-imagepicker
. В iOS как узнать имя изображения и когда оно было снято. Ниже приведен код, который я использую.
context
.authorize()
.then(function() {
return context.present();
})
.then(selection => {
selection.forEach(selected => {
if (selected._android) {
file = fileSystemModule.File.fromPath(selected._android);
//viewModel.uploadFile(file);
} else {
imageSourceModule.fromAsset(selected).then(imageSource => {
this.images.push(imageSource);
const folder = fileSystemModule.knownFolders.documents().path;
const fileName = "Photo.png";
const path = fileSystemModule.path.join(folder, fileName);
const saved = imageSource.saveToFile(path, "jpg", 60);
});
}
});
})
.catch(function(e) {
console.log("error in selectPicture", e);
});