Angular 5-如何从HTML到组件获取变量

时间:2018-09-25 14:30:15

标签: angular angular5

我的表包含HTML中的两列:

            <table class="table">
              <tr>
                <th>Client</th>
                <th>Total des messages</th>
              </tr>
              <tr *ngFor="let ac of accounts;">
                <td>{{ac}}</td>
                <td>{{totalFdAc}}</td>
              </tr>
            </table>

第一列是由每个元素循环的字符串数组,而第二列是被调用函数的结果,其中第一列的值设置为参数。

这是component.ts的示例:

//Get total feedback by Customer
this.accountService.countFeedbacksByAcc(ac).subscribe(res => {
        this.totalFdAc = res;
        console.log(res);
      }, err => {
      console.log(err);
});

如何使其成为可能?

0 个答案:

没有答案