私は角4で遊んでいますが、インターネット上で正解を見つけることができませんでした。だからここに誰かが私を少し助けてくれる知識があるのだろうかと思っていた。新しい表の行全体をこの表にプッシュしたい私は1行の代わりに4行の2行を必要とします。角4テーブル全体を押し込む方法
export class AppComponent {
\t title = 'First Angular Assignment';
\t balances: string[];
\t constructor() {
\t \t this.balances = [
"Zorgtoeslag", "60", "Verzekering", "80", /* first row*/
"Zorgtoeslag", "60", "Verzekering", "80", /* second row and so on */
];
\t }
}
<table>
\t <tr>
\t \t <th>Inkomsten</th>
\t \t <th></th>
\t \t <th>Uitgaven</th>
\t \t <th></th>
\t </tr>
<tr >
<td *ngFor = "let balance of balances;">
\t {{balance}}
</td>
</tr>
</table>
あなたは 'this.balancesの= [ { "Zorgtoeslag"、 "60"、 "Verzekering"、 "80"}/*最初の行*/ { "Zorgtoeslag" のようなオブジェクト修正しなければなりません*/ ]; –
https://plnkr.co/edit/Y5NdLSa7ljlYagaVALq4?p=preview – yurzui
@yurzui次のエラーが表示されます。 console.log - >パイプ 'chunkks'が見つかりませんでした –