web-dev-qa-db-ja.com

Angular 5、HTML、チェックボックスのブール値がチェックされます

角度5、TypeScript 2.7.1

ブール値を返すときにチェックボックスをオンにすることはできないようですが、item.checkはtrueまたはfalseを返します。

<tr class="even" *ngFor="let item of rows">
<input value="{{item.check}}" type="checkbox" checked="item.check">

チェックボックスが入力内に書き込まれている場合、チェックボックスは常にチェックされています。 checked="false"の場合、チェックが解除されません。

代わりにAngular機能を使用して行うより良い方法はありますか? ngModelまたはngIfのような??????

解決

<input type="checkbox" [checked]="item.check == 'true'">
27
Mr. Toast

試してください:

[checked]="item.checked"

チェックアウト: Angularのさまざまなフォームコントロールに対処する方法

50
ProfitWarning

これを使用できます:

<input type="checkbox" [checked]="record.status" (change)="changeStatus(record.id,$event)">

ここで、レコードは現在の行のモデルであり、ステータスはブール値です。

7

これにより、誰かがカスタムスタイルのカスタムチェックボックスコンポーネントを開発できるようになります。このソリューションはフォームでも使用できます。

HTML

<label class="lbl">

  <input #inputEl type="checkbox" [name]="label" [(ngModel)]="isChecked" (change)="onChange(inputEl.checked)"
   *ngIf="isChecked" checked>
  <input #inputEl type="checkbox" [name]="label" [(ngModel)]="isChecked" (change)="onChange(inputEl.checked)"
   *ngIf="!isChecked" >
  <span class="chk-box {{isChecked ? 'chk':''}}"></span>
  <span class="lbl-txt" *ngIf="label" >{{label}}</span>
</label>

checkbox.component.ts

    import { Component, Input, EventEmitter, Output, forwardRef, HostListener } from '@angular/core';
import { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';

const noop = () => {
};

export const CUSTOM_INPUT_CONTROL_VALUE_ACCESSOR: any = {
  provide: NG_VALUE_ACCESSOR,
  useExisting: forwardRef(() => CheckboxComponent),
  multi: true
};

/** Custom check box  */
@Component({
  selector: 'app-checkbox',
  templateUrl: './checkbox.component.html',
  styleUrls: ['./checkbox.component.scss'],
  providers: [CUSTOM_INPUT_CONTROL_VALUE_ACCESSOR]
})
export class CheckboxComponent implements ControlValueAccessor {


  @Input() label: string;
  @Input() isChecked = false;
  @Input() disabled = false;
  @Output() getChange = new EventEmitter();
  @Input() className: string;

  // get accessor
  get value(): any {
    return this.isChecked;
  }

  // set accessor including call the onchange callback
  set value(value: any) {
    this.isChecked = value;
  }

  private onTouchedCallback: () => void = noop;
  private onChangeCallback: (_: any) => void = noop;


  writeValue(value: any): void {
    if (value !== this.isChecked) {
      this.isChecked = value;
    }
  }

  onChange(isChecked) {
    this.value = isChecked;
    this.getChange.emit(this.isChecked);
    this.onChangeCallback(this.value);
  }

  // From ControlValueAccessor interface
  registerOnChange(fn: any) {
    this.onChangeCallback = fn;
  }

  // From ControlValueAccessor interface
  registerOnTouched(fn: any) {
    this.onTouchedCallback = fn;
  }

  setDisabledState?(isDisabled: boolean): void {

  }

}

checkbox.component.scss

   @import "../../../assets/scss/_variables";
/* CHECKBOX */

.lbl {
    font-size: 12px;
    color: #282828;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    &.checked {
        font-weight: 600;
    }
    &.focus {
      .chk-box{
        border: 1px solid #a8a8a8;
        &.chk{
          border: none;
        }
      }
    }
    input {
        display: none;
    }

    /* checkbox icon */
    .chk-box {
        display: block;
        min-width: 15px;
        min-height: 15px;
        background: url('/assets/i/checkbox-not-selected.svg');
        background-size: 15px 15px;
        margin-right: 10px;
    }
    input:checked+.chk-box {
        background: url('/assets/i/checkbox-selected.svg');
        background-size: 15px 15px;
    }
    .lbl-txt {
        margin-top: 0px;
    } 

}

使用法

外部フォーム

<app-checkbox [label]="'Example'" [isChecked]="true"></app-checkbox>

内部フォーム

<app-checkbox [label]="'Type 0'" formControlName="Type1"></app-checkbox>
3

これが私の答えです

Row.model.tsで

export interface Row {
   otherProperty : type;
   checked : bool;
   otherProperty : type;
   ...
}

.htmlで

<tr class="even" *ngFor="let item of rows">
   <input [checked]="item.checked" type="checkbox">
</tr>

.tsで

行:Row [] = [];

component.tsの行を更新します

0
Dhanika

オブジェクトのコピーがある場合、[checked]属性が機能しない場合があります。その場合、(change)を次のように使用できます。

        <input type="checkbox" [checked]="item.selected" (change)="item.selected = !item.selected">
0
Colo Ghidini