i'm creating WP app with HTML, CSS and Javascripts, now i have a question: - I using openPicker.pickSingleFileAndContinue() to pick a picture from library and i create a file from it:
var file = MSApp.createFileFromStorageFile(filePicked);
I use console.log(file), it print:
[object File]
{
[functions]: ,
__proto__: { },
constructor: { },
lastModifiedDate: [date] Thu Apr 02 2015 16:44:58,
name: "WP_20150402_001.jpg",
size: 1048405,
type: "image/jpeg"
}
Now, my question is: How can i convert it to JSON file with format:
{file:
[
{
modified: date] Thu Apr 02 2015 16:44:58,
name: "WP_20150402_001.jpg",
size: 1048405,
type: "image/jpeg"
}
]
}
Tks for read, plz help me.