如何通过其changed-eventlistener

时间:2017-06-21 08:57:40

标签: javascript angular checkbox angular-material2

我在angular.js 4中有一个矩阵(带有material.angular),里面填充了复选框。当用户单击复选框时,HTTP-Request将发送到后端服务器。如果后端服务器不可用或服务调用因任何原因出错,我希望复选框返回到之前的状态(选中/取消选中)。因此,我实现了以下change-eventhandler来进行服务调用并根据服务调用的结果做出反应:

zuordnungChanged(rolle_id: string, recht_id: string) {
let a = this.zuordnungsmatrix["Rolle_" + rolle_id + "_Recht_" + recht_id];
if (a === true ){
  this.rechtematrix.rechtEntziehen(rolle_id, recht_id).subscribe(() => {
      a = false;
      this.zuordnungsmatrix["Rolle_" + rolle_id + "_Recht_" + recht_id] = a;
      //Notify user
      });
    },
    () => {
      //Notify user
    });
} else {
  this.rechtematrix.rechtVergeben(rolle_id, recht_id).subscribe(() => {
      a = true;
      this.zuordnungsmatrix["Rolle_" + rolle_id + "_Recht_" + recht_id] = a;
      //Notify User
      });
  },
    () => {
      //Notify user
    }
  );
}
}

zuordnungsmatrix 变量的定义和填充如下:

private zuordnungen: Array<any>;
  private zuordnungsmatrix = [];

erstelleZuordnungsmatrix(): void {
    for (let rolle of this.zuordnungen) {
      for ( let recht of rolle.recht_ids) {
        this.zuordnungsmatrix["Rolle_" + rolle.rolle_id + "_Recht_" + recht] = true;
      }
    }
  }

我将 zuordnungsmatrix 中的值绑定到复选框&#39; checked-attribute如下:

<table td-data-table *ngIf="rechteUndRollenVorhanden()">
      <tr>
        <th td-data-table-column></th>
      <th td-data-table-column *ngFor="let rolle of rollen" [id]="'Rolle_' + rolle.rolle_id">{{rolle.beschreibung}}</th>
      </tr>
      <tr td-data-table-row *ngFor="let recht of rechte" [id]="'Recht_' + recht.recht_id">
        <td td-data-table-cell>{{recht.beschreibung}}</td>
        <td td-data-table-cell *ngFor="let rolle of rollen">
          <md-checkbox [id]="'Rolle_' + rolle.rolle_id + '_Recht_' + recht.recht_id"
                       [checked]="zuordnungsmatrix['Rolle_' + rolle.rolle_id + '_Recht_' + recht.recht_id] ? true : false"
                        (change)="zuordnungChanged(rolle.rolle_id, recht.recht_id, $event)">{{zuordnungsmatrix['Rolle_' + rolle.rolle_id + '_Recht_' + recht.recht_id] ? true : false}}
          </md-checkbox>
        </td>
      </tr>
    </table>

我的问题是,我不知道如何让复选框代表 zuordnungsmatrix 的实际状态。变量已更新,视图中的此绑定也起作用:

{{zuordnungsmatrix['Rolle_' + rolle.rolle_id + '_Recht_' + recht.recht_id] ? true : false}}

但我尝试了很多更新复选框,但它没有用。无论如何,复选框的初始设置&#39;检查状态工作正常。如何更新复选框&#39;在自己的事件监听器中陈述?

1 个答案:

答案 0 :(得分:0)

解决方案非常简单:

出于某种原因,Angular不会通过One-Way-Binding更新复选框的更改值。您只需要明确设置checked状态。为此,您可以通过参数$event将事件从HTML传递到组件。这已在上面的示例中完成。

在组件的更改事件处理程序中,您可以读取事件并获取对checkbox元素的引用。您所要做的就是设置此元素的checked属性($event.source.checked)。 问题的事件处理程序现在看起来像这样:

zuordnungChanged(rolle_id: string, recht_id: string, event: any) {
    let a = this.zuordnungsmatrix["Rolle_" + rolle_id + "_Recht_" + recht_id];
    if (a === true ){
      this.rechtematrix.rechtEntziehen(rolle_id, recht_id).subscribe(() => {
          //Happy case
          a = false;
          this.zuordnungsmatrix["Rolle_" + rolle_id + "_Recht_" + recht_id] = a;
          //Notify user
          });
        },
        () => {
          //Bad case
          event.source.checked = this.zuordnungsmatrix['Rolle_' + rolle_id + '_Recht_' + recht_id];
          //Notify user
        });
    } else {
      this.rechtematrix.rechtVergeben(rolle_id, recht_id).subscribe(() => {
          //Happy case
          a = true;
          this.zuordnungsmatrix["Rolle_" + rolle_id + "_Recht_" + recht_id] = a;
          //Notify User
          });
      },
        () => {
          //Bad case
          event.source.checked = this.zuordnungsmatrix['Rolle_' + rolle_id + '_Recht_' + recht_id];
          //Notify user
        }
      );
    }
}

请注意,只有在REST调用失败时才会进行属性设置。这是因为在快乐的情况下,复选框会由用户交互自动更新。