gpt4 book ai didi

angular - 类型 'File | null' 不可分配给类型 'File' 。在 Angular 11

转载 作者:行者123 更新时间:2023-12-04 03:41:14 25 4
gpt4 key购买 nike

嗨,我是 Angular 的新手,目前我正在使用 Angular 11 项目,我必须上传一个 CSV 文件并在客户端提取文件记录,然后通过 ASP.NET Web API 将它们保存在数据库中。
在这里,我按照教程尝试获取 Angular 侧的 CSV 文件的数据并将它们显示在同一页面中。
然后我得到了这个错误,
输入'文件| null' 不可分配给类型 'File'。
类型 'null' 不可分配给类型 'File'.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>
This is the error I got
谢谢!

最佳答案

尝试使用:
fileupload.component.ts

import { Component, OnInit, VERSION } from "@angular/core";

@Component({
selector: 'app-file-upload',
templateUrl: './file-upload.component.html',
styles: []
})
export class FileUploadComponent implements OnInit {
name = "Angular " + VERSION.major;

lines: any = [];
linesR: any = [];

ngOnInit() {}

changeListener(files) {
let fileList = (<HTMLInputElement>files.target).files;
if (fileList && fileList.length > 0) {
let file: File = fileList[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);
};
}
}
}
fileupload.component.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)"
/>

<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>

关于angular - 类型 'File | null' 不可分配给类型 'File' 。在 Angular 11,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65988780/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com