我有一个包含几列的表,其中一列是输入。在表格下面,我有一个按钮,单击该按钮,我想更新数据库,并单击一次以更新所有用户的年龄。因此,对于该呼叫,我将需要每个用户的行ID和输入值。谁能解释一下该怎么做?谢谢
TS
const ELEMENT_DATA: User[] = [
{ id: 1, country: 'UK', name: 'A', age: 20 },
{ id: 2, country: 'France', name: 'B', age: 21 },
{ id: 3, country: 'Germany', name: 'C', age: 22 }
];
export interface User {
id: number;
country: string;
name: string;
age: number;
}
@Component({
selector: 'app-table',
templateUrl: 'app.component.html',
styleUrls: ['app.component.css']
})
export class TableComponent implements OnInit {
displayedColumns = ['country', 'name', 'age'];
dataSource = ELEMENT_DATA;
ngOnInit() {
}
}
HTML
<div>
<table mat-table [dataSource]="dataSource" class="mat-elevation-z8">
<ng-container matColumnDef="country">
<th mat-header-cell *matHeaderCellDef> Country </th>
<td mat-cell *matCellDef="let element"> {{element.country}} </td>
</ng-container>
<ng-container matColumnDef="name">
<th mat-header-cell *matHeaderCellDef> Name </th>
<td mat-cell *matCellDef="let element"> {{element.name}} </td>
</ng-container>
<ng-container matColumnDef="age">
<th mat-header-cell *matHeaderCellDef> Age </th>
<td mat-cell *matCellDef="let element">
<div>
<input type="text" class="age-input" value="{{element.age}}">
</div>
</td>
</ng-container>
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
<tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
</table>
<button mat-raised-button type="submit">
<i class="material-icons mr-2">save</i>Save
</button>
</div>
答案 0 :(得分:0)
您需要做的就是通过input
绑定ngModel
元素的值,您的dataSource
将被更新。
<input type="text" class="age-input" [(ngModel)]="element.age">
请参阅 this, 单击保存按钮后,更新的模型将被打印到 控制台。