1
我是angular 2.的新手。在上傳兩個或多個文檔時,它會在模板中列出。列出的每一行文檔都有用於輸入附加信息的輸入插槽。提交時,僅在文檔列表最後一行輸入的值將作爲對象返回。我想要返回文檔列表中輸入的所有行的值。下面是我的代碼返回多個對象Angular 2表格
模板
<h1 class="separator">Manage Documents</h1>
<!-- in transit -->
<div class="row">
<div class="col-xs-2">
<input type="file" id="uploadFile" style="display: none" (change)='onClickUploadDocument($event)' multiple>
<label for="uploadFile" class="btn btn-primary">Upload Documents</label>
</div>
<div class="col-xs-6">
<input type="button" value="Select Truck To Send Document" class="btn btn-primary" data-toggle="modal" data-target="#selectTruck">
</div>
</div>
<table cellpadding="4" class="grid" >
<thead><tr><th>Document Name</th><th>Document ID</th><th>Document Type</th><th>Source</th>
<th>Document Date</th><th>Trip ID</th><th>Notes</th><th>Action</th></tr></thead>
<form [ngFormModel]="myform" (ngSubmit)="onSubmit(myform.value)">
<tbody *ngFor="let file of files">
<tr >
<td class="form-group" >{{file.name}}</td>
<td class="form-group"><input type="text" class="form-control" ngControl="documentId" #documentId="ngForm"></td>
<td class="form-group"><input type="text" class="form-control" ngControl="type" #type="ngForm"></td>
<td class="form-group"><input type="text" class="form-control" ngControl="source" #source="ngForm"></td>
<td class="form-group"><input type="date" class="form-control" ngControl="date" #date="ngForm"></td>
<td class="form-group"><input type="text" class="form-control" ngControl="tripId" #tripId="ngForm"></td>
<td class="form-group"><input type="text" class="form-control" ngControl="notes" #notes="ngForm"></td>
<td class="form-group">
<a (click)="remove(file)"><span class="glyphicon glyphicon-remove" aria-hidden="true"></span></a>
</td>
</tr>
</tbody>
</table>
<!-- save button -->
<button type="submit" class="form-group" class="btn btn-primary " >Save</button>
</form>
組件
import {Component, OnInit, OnChanges} from '@angular/core';
import {NgClass, FORM_DIRECTIVES, Control, ControlGroup, FormBuilder } from '@angular/common';
import {ROUTER_DIRECTIVES} from '@angular/router-deprecated';
import {FleetService} from '../../fleet/fleetControlPanel/fleetControlPanelService';
import {DocumentManagementService} from './documentManagementService';
@Component({
selector: 'documentManagement',
templateUrl: 'app/dashboard/features/documents/documentManagement/documentManagementTemplate.html',
directives: [ROUTER_DIRECTIVES, NgClass, FORM_DIRECTIVES ]
})
export class DocumentManagementComponent implements OnInit, OnChanges {
myform: ControlGroup;
file: any[];
files: any[] = [];
trucks: any[];
errorMessage: any;
checked: boolean ;
// constructor to loop the products in product service file and disply in html
constructor(private _fleetService: FleetService, private _documentManagementService: DocumentManagementService,
_formBuilder: FormBuilder){
this.myform = _formBuilder.group({
'documentId': [],
'type': [],
'source': [],
'date': [],
'tripId': [],
'notes': []
})
}
ngOnInit(): void {
}
ngOnChanges(): void {
}
onClickUploadDocument(event){
console.log("clicked")
let fileList: FileList = event.target.files;
console.log("file: ",fileList);
for (let i = 0; i < fileList.length; i++) {
var files = fileList[i];
console.log("files are: ",files);
this.files.push(files);
}
}
remove(file: any){
console.log("delete file:..", file)
var index = this.files.indexOf(file);
this.files.splice(index, 1)
console.log("total files in list:..", this.files)
}
onSubmit (documents: any) {
console.log("returned objects are:..", documents)
}
}
是否有人可以幫助我如何返回所有的文件輸入插槽輸入的值。謝謝。
嗨Günter,我得到這個錯誤後,實現你的答案。 '原來的例外:無法找到控制'documentId0'' –
什麼錯誤? 。 。 。 –
原文例外:找不到控件'documentId0' –