Angular 2多个复选框值

时间:2016-09-21 21:11:06

标签: checkbox angular

我有这个代码从数据库生成多个复选框:

<div *ngIf="edit">
<div class="checkbox" *ngFor="let contactType of contactTypes">
    <label class="filled">
    <input                                  
        type="checkbox"
        formControlName="types"
        name="types"
        value="{{contactType.id}}"                                                                  
        > 
        {{contactType.name}}
    </label>
</div>

我需要从选中的复选框提交所有值,并将值作为字符串存储在object属性中,并以逗号分隔。我怎样才能做到这一点?请记住,我对Angular很新。

0 个答案:

没有答案