表中的复选框选择Angular中的表行

问题描述 投票:2回答:1

我在Angular 6中有一个表,它有一个复选框吗?我想要做的是选择表格行,即复选框,然后点击一个选择按钮,然后提交。我想知道桌子必须用<form>包裹。到目前为止,我的HTML结构是但它不起作用:

 <form [formGroup]="assetForm" (ngSubmit)="onSubmit()">
     <table class="table table-striped table-hover mb-10">
         <thead>
            <tr>
              <th>Number</th>
              <th>Sev</th>
              <th>Phone</th>
            </tr>
          </thead>
          <tbody>
             <tr *ngFor="let incident of data">
               <td>
                  <label class="form-radio">
                    <input type="radio" name="id_number" value="id_number">
                    <i class="form-icon"></i>{{incident.number}}
                  </label></td>
                <td>{{incident.sev}}</td>
                <td>{{incident.phone}}</td>
              </tr>
            </tbody>
       </table>
       <button class="btn btn-primary" [disabled]="!Form.valid" type="submit">Select</button>
  </form>

Ts.file

onSubmit() {
    if (this.assetForm.invalid) {
      this.assetForm.setErrors({ ...this.assetForm.errors, 'required': true });
      return;
    }
    this.uploading = true;
    this.service.post(this.assetForm.value).subscribe((response: any) => {
      console.log(response);//On success response

    }, (errorResponse: any) => {
      console.log(errorResponse); //On unsuccessful response
      this.error = true;
      this.uploading = false;
    });
  }
html angular
1个回答
0
投票
<tr *ngFor="let incident of data">
    <td>
        <label class="form-radio">
           <input type="radio" name="id_number" value="id_number" [(ngModel)]="incident.checked">
           <i class="form-icon"></i>{{incident.number}}
        </label>
    </td>
    <td>{{incident.sev}}</td>
    <td>{{incident.phone}}</td>
</tr>

试试看,希望它会起作用。

© www.soinside.com 2019 - 2024. All rights reserved.