0
文件不發送。Angular4輸入文件與ngForm模塊
文件沒有附加在click事件中。
通過控制檯的JSON顯示爲空。
<form #form="ngForm" enctype="multipart/form-data" novalidate>
<input type="file" id="file" name="file1" class="form-control" ngModel>
<input type="file" id="file" name="file2" class="form-control" ngModel>
<button class="btn btn-primary" (click)="envirArquivos(form.value)">Enviar</button>
</form>
文件TS
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'mw-compare-nfe',
templateUrl: './compare-nfe.component.html'
})
export class CompareNFEComponent implements OnInit {
constructor() { }
ngOnInit() {
}
envirArquivos(form) {
console.log(form);
}
}
{ 「文件1」: 「」, 「文件2」: 「」} 空
非常感謝。 –