FileReader readAsText() async issues?

前端 未结 3 2085
忘掉有多难
忘掉有多难 2021-01-12 22:29

I have implemented the following code to parse a CSV via a selection:

export async function parse(file: File) {
           


        
3条回答
  •  离开以前
    2021-01-12 23:30

    await doesn't help here. readAsText() doesn't return a Promise.

    You need to wrap the whole process in a Promise:

    export function parse(file: File) {
      // Always return a Promise
      return new Promise((resolve, reject) => {
        let content = '';
        const reader = new FileReader();
        // Wait till complete
        reader.onloadend = function(e: any) {
          content = e.target.result;
          const result = content.split(/\r\n|\n/);
          resolve(result);
        };
        // Make sure to handle error states
        reader.onerror = function(e: any) {
          reject(e);
        };
        reader.readAsText(file);
      });
    }
    

提交回复
热议问题