-1
私はtransactions
のリストを持つ親コンポーネントを持っています。子を削除して親リストを更新する
<table class="table awaken-table">
<thead>
<tr>
<th>Actions</th>
</tr>
</thead>
<tbody>
<transaction-row style="display:table-row;line-height:32px;" *ngFor="let transaction of transactions | orderDate" [transaction]="transaction"></transaction-row>
</tbody>
</table>
を...とtransaction-row
はそうのようになります:彼らはそうのように表示されている私は、私は成功した項目を削除アイコンをクリックしdeleteAlert()
を呼び出すと
@Component({
selector: 'transaction-row',
template: `
<td text-center style="font-size:16px">
<i class="fa fa-trash danger" style="font-size:20px;" (click)=deleteAlert()></i>
</td>
`
})
export class TransactionRow {
@Input() transaction: any;
...
}
が、それはリストとして上に残っていますtransactions
は更新されていません。
どのように私は(私はそれが私はそれを使用する方法と非常に不慣れだ@Output
に関係していることを確認しています。)transactions
のリストから
より高度なアプローチは、両方のコンポーネントと共有サービスを使用することです。どのアプローチが良いですか?複雑さに依存します。敬具 –