【问题标题】:Date is appearing in number format while upload / import excel sheet in Angular在 Angular 中上传/导入 excel 工作表时,日期以数字格式显示
【发布时间】:2021-07-03 05:19:05
【问题描述】:

我正在尝试使用 angular 实现上传 excel 工作表,但是当工作表显示在浏览器中时,日期更改为数字格式。例如。 2020 年 12 月 12 日更改为 44177.00011574074。我需要 dd-mm-yyyy 格式。请指导我在我的打字稿代码中需要做的更改。

app.component.html

  <button button mat-raised-button class="btn-primary" color="primary" style="margin: 1%;"
    (click)="triggerFileSelector($event)" style="margin: 1%;">
    Choose File
  </button>

<!-- Code to display table -->
<section class="section">
  <table class="material-table">
    <thead>
      <tr>
        <th></th>
      </tr>
    </thead>
    <tr *ngFor="let rowData of tableData">
      <td value="Delete" (click)="deleteRow(rowData)">X</td>
      <td *ngFor="let schema of tableSchema"
        [ngStyle]="{'background-color': (rowData[schema.field].value) ? 'white' : '#ff9999' }">
        <span #el contenteditable (blur)="rowData[schema.field].value = el.innerText">
          {{ rowData[schema.field].value }}
          
        </span>
      </td>
    </tr>
  </table>
</section>

app.component.ts

triggerFileSelector(e: any): void {
    e.preventDefault()
    this.fileInput.nativeElement.click()
  }

  handleFileInput(files: FileList): void {
    this.workbookFile = files.item(0)
    this.workbookFileName = this.workbookFile.name
    this.readFile()
  }

  readFile(): void {
    const temporaryFileReader = new FileReader()

    temporaryFileReader.onerror = () => {
      temporaryFileReader.abort()
      return new DOMException('Problem parsing input file.')
    }

    temporaryFileReader.onload = (e: any) => {
      /* read workbook */
      const bstr: string = e.target.result
      this.workbookInstance = XLSX.read(bstr, { type: 'binary' })

      /* grab first sheet */
      this.worksheetName = this.workbookInstance.SheetNames[0]
      this.readSheet(this.worksheetName)
    }

    temporaryFileReader.readAsBinaryString(this.workbookFile)
  }

  readSheet(sheetName: string) {
    this.worksheetInstance = this.workbookInstance.Sheets[sheetName]
    this.worksheetData = XLSX.utils.sheet_to_json(this.worksheetInstance, {
      header: this.worksheetHasHeader ? 0 : 1,
    })
}

【问题讨论】:

    标签: angular excel typescript datetime excel-import


    【解决方案1】:

    Excel 日期存储为浮点数。数字 1.0 表示1900-01-01 00:00:00。其他数字表示从那天起的天数。因此,您可以使用以下内容将 Excel 日期转换为 Javascript 时间戳:const jsDate = (excelDate - 25569) * 24 * 60 * 60 * 100025569 幻数是从 1900-01-011970-01-01 的天数。 24 * 60 * 60 * 1000 是一天中的毫秒数。

    但如果您提供正确的选项,xlsx 包的 util.sheet_to_json() method 会为您做到这一点。

    this.worksheetData = XLSX.utils.sheet_to_json(this.worksheetInstance, {
          raw: false,
          header: this.worksheetHasHeader ? 0 : 1,
          dateNF: "dd/mm/yyyy"
        })
    

    【讨论】:

    • 有帮助,但是我必须在代码中的确切位置执行我无法理解的转换。请指导那个手势。提前致谢!
    • 请看我的编辑。 xlsx 的文档非常糟糕。
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2023-03-18
    • 2016-02-01
    • 2020-03-05
    • 2021-09-09
    相关资源
    最近更新 更多