0
batchObj:any= [
{'batch':'28','term':'Term I','section':'Section I'},
{'batch':'28','term':'Term I','section':'Section II'},
{'batch':'28','term':'Term I','section':'Section III'},
{'batch':'28','term':'Term II','section':'Section I'},
{'batch':'29','term':'Term I','section':'Section I'},
{'batch':'29','term':'Term I','section':'Section II'},
{'batch':'30','term':'Term I','section':'Section I'},
{'batch':'31','term':'Term I','section':'Section I'}
];
HTMLで異なる選択ボックスでオブジェクトをフィルタ処理する方法angular2
Batch : <select [(ngModel)]="sel_batch" > <option >Select Batch</option>
<option *ngFor="let item of batchObj;">{{item.batch}}</option>
</select>
Term : <select [(ngModel)]="sel_term"> <option>Select Term</option>
<option *ngFor="let item of batchObj;">{{item.term}}</option>
</select>
Section : <select [(ngModel)]="sel_section"> <option>Select Section</option>
<option *ngFor="let item of batchObj;">{{item.section}}</option>
</select>
ページのロードdistinct batch
ストアsel_batch select box
で、その後時に選択batch
選択term
ときにsection select box
にするためにterm select box
同じ作業中に表示されるはずですterm
関連
角2でどのようにするのですか?
私は試してみます – Pravin
エラー:zone.js:405未処理Promise拒否:テンプレート解析エラー: パイプ 'filterPipe'が見つかりません – Pravin
'filterPipe'をモジュールに含めましたか? –