Export xlsx to csv in Angular
问题 I am using XLSX to parse data from an xlsx file. The problem is that when I try to get the data, the data is different depending on whether I read it in XLSX and CSV. I prefer to read it in CSV, since if I don't have to transform the dates according to the Excel format. I am trying to convert the XLSX file to CSV when the user uploads the file. The way I try is: const reader: FileReader = new FileReader(); reader.onload = (e: any) => { var binaryData = e.target.result; //Converting Binary