I am facing an issue with my Angular application. I have successfully loaded a .json file into the application, but getting stuck on accessing the data within the file. I previously asked about this problem but realized that I need help in specifically understanding how to access the data in a file that has already been uploaded and recognized as an application/json file by my application.
startUpload(event: FileList){
var file = event.item(0);
console.log(file)
}
console output
File(139404) {name: "turnaroundtest.json", lastModified: 1527392751758, lastModifiedDate: Sat May 26 2018 20:45:51 GMT-0700 (PDT), webkitRelativePath: "", size: 139404}