嗨,我是 Angular 的新手,目前我正在使用 Angular 11 项目,我必须上传一个 CSV 文件并在客户端提取文件的记录,然后通过 ASP.NET Web API 将它们保存在数据库中。
在这里,我按照教程并尝试获取角度侧的 CSV 文件的数据并将它们显示在同一页面中。
然后我得到了这个错误,
键入“文件 | null' 不可分配给类型“文件”。类型“null”不可分配给类型“文件”.ts(2322)
我尝试了很多东西,但仍然无法解决这个问题。请你帮助我好吗?
这是我的 .ts 文件,
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-file-upload',
templateUrl: './file-upload.component.html',
styles: [
]
})
export class FileUploadComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
lines: any = [];
linesR: any = [];
changeListener(files: FileList) {
console.log(files);
if (files && files.length > 0) {
let file: File = files.item(0);
console.log(file.name);
console.log(file.size);
console.log(file.type);
let reader: FileReader = new FileReader();
reader.readAsText(file);
reader.onload = (e) => {
let csv: any = reader.result;
let allTextLines = [];
allTextLines = csv.split(/\r|\n|\r/);
let headers = allTextLines[0].split(';');
let data = headers;
let tarr = [];
for (let j = 0; j < headers.length; j++) {
tarr.push(data[j]);
}
this.lines.push(tarr);
let tarrR = [];
let arrl = allTextLines.length;
let rows = [];
for (let i = 1; i < arrl; i++) {
rows.push(allTextLines[i].split(';'));
}
for (let j = 0; j < arrl; j++) {
tarrR.push(rows[j]);
}
this.linesR.push(tarrR);
}
}
}
}
这是我的 .html 文件
<div class="container">
<h1 style="text-align: center"> File Upload </h1>
<br><br>
<input class="form-control" type="file" class="upload" (change)="changeListener($event.target.files)">
<table class="table table-bordered table-dark">
<thead>
<tr>
<th *ngFor="let item of lines[0]; let i = index">
{{item}}
</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let item of linesR[0]; let i = index">
<td *ngFor="let itemm of lines[0]; let j = index">
{{item[j]}}
</td>
</tr>
</tbody>
</table>
</div>
谢谢!