1
モデルの値をビューから更新するときにイベントをトリガーしたいモデル更新時にイベントをトリガーする方法
私は休暇として観察できるようにしようとしています。
export class requestsComponent implements OnInit {
private filter: Observable<{
name: string;
phone: number;
email: string;
agent: string;
}>;
constructor(@Inject(BookSiteVisitService) private bookSiteVisitService: BookSiteVisitService) {
this.filter = new Observable(observer => {
});
this.filter.subscribe(
value => {
console.log(value);
},
error => { console.log(error) },
() => {
console.log('conmplete');
}
);
}
ngOnInit() {
}
}
私はあなたがこのためにngModelChange
イベントを使用することができますそれに応じて
<tbody>
<tr>
<td><input type="text" [(ngModel)]="filter.name" class="form-control"></td>
<td><input type="text" [(ngModel)]="filter.phone" class="form-control"></td>
<td><input type="text" [(ngModel)]="filter.email" class="form-control"></td>
<td></td>
<td><input type="text" [(ngModel)]="filter.agent" class="form-control"></td>
</tr>
<tr *ngFor="let request of requests">
<td>{{request.customerName}}</td>
<td>{{request.phone}}</td>
<td>{{request.email}}</td>
<td>{{request.comment}}</td>
<td>{{request.representativeName}}</td>
<td>{{request.requestType}}</td>
</tr>
</tbody>
を??? – Rhushikesh
どういう意味ですか?どのレベルですか? 'filter'オブジェクト内にありますか? –