I am trying to allow users to upload a CSV file so that the values can then be displayed and validated. I do not want to upload the file directly to the server, I would like to have it just in scope until it has been validated.
Angular 1.5.8 is unable to bind input types of file to the model see here so I'm looking at using angular-file-upload but all options seem to require uploading to the server. I am unable to find a library that will help me get an input type file into scope.
So my question is: how can I get a csv file into angular scope?