我正在尝试从mat-dialog接收文件,该文件已输入文件。但是有一些问题。请帮助我。
父component.ts:
export class TimelineComponent implements OnInit {
cvList = [];
ngOnInit() {
}
addCv() {
const dialogNew = this.dialog.open(NewCvDialogComponent, {
data: {...this.cvList}
});
dialogNew.afterClosed().subscribe(result => {
if (result) {
this.cvList.push(result);
}
});
}
}
mat-dialog component.html:
<div class="dialog">
<h2 mat-dialog-title>Attach CV</h2>
<form fxLayout="column" #form="ngForm">
<input
type="file"
accept=".doc,.docx,.txt,.pdf"
placeholder="Input file"
name="input-file"
[(ngModel)]="data.file"
(change)="addCV($event)"
required
/>
</form>
<div
mat-dialog-actions
fxLayout="row nowrap"
fxLayoutGap="10px"
class="actions"
>
<button
mat-raised-button
color="warn"
[mat-dialog-close]="false"
fxFlex="50"
>
Cancel
</button>
<button
mat-raised-button
color="primary"
[mat-dialog-close]="data"
cdkFocusInitial
fxFlex="50"
[disabled]="form.invalid"
>
Save
</button>
</div>
</div>
但是,如果我使用此结果,我只会得到文件名。我想接收所有带有名称,大小等的对象。我该怎么办?
答案 0 :(得分:0)
已解决。在对话框组件中,我只添加了一个带有输入文件的变量,然后使用[mat-dialog-close]将其传递给了父级
答案 1 :(得分:0)
您将文件路径作为字符串获取了吗?解决方案是将文件更改为字符串并将数据传递到父组件。
在您的 mat-dialogue.component.ts 中添加此文件事件功能
convertTostring(event){
let reader = new FileReader();
if(event.target.files && event.target.files.length) {
const [file] = event.target.files;
reader.readAsDataURL(file);
reader.onload = () => {
this.cvv = reader.result;
};
}
}
mat-dialogue.component.html
并将模板更改为 [mat-dialog-close] =“ [data,cvv]”
<button
mat-raised-button
color="primary"
[mat-dialog-close]="[data, cvv]"
cdkFocusInitial
fxFlex="50"
[disabled]="form.invalid">
Save
</button>
最后,您可以在 parent.component.ts
中获取数据 addCv() {
const dialogNew = this.dialog.open(NewCvDialogComponent, {
data: {...this.cvList}
});
dialogNew.afterClosed().subscribe(data => {
if (result) {
console.log(data);
}
});
}