Skip to content

Instantly share code, notes, and snippets.

@chengjianhua
Created September 19, 2016 10:09
Show Gist options
  • Save chengjianhua/fe9de2331204f2231df9a465a4139479 to your computer and use it in GitHub Desktop.
Save chengjianhua/fe9de2331204f2231df9a465a4139479 to your computer and use it in GitHub Desktop.
Read file when select file
const fileReader = new FileReader();
fileReader.readAsText(file);
fileReader.onloadend = (fileEvent) => {
const result = fileEvent.target.result;
console.log(result);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment