选中“Angular 5、HTML、布尔值打开”复选框

t9aqgxwy  于 2022-12-09  发布在  Angular
关注(0)|答案(8)|浏览(152)

Angular 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">

当在input中写入checked时,该复选框总是被选中。当checked="false"时,它不会被取消选中。
有没有更好的方法用Angular 特征来代替?比如ngModel或ngIf???
解决方案

<input type="checkbox" [checked]="item.check == 'true'">
r55awzrz

r55awzrz2#

您可以使用此选项:

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

这里,record是当前行的模型,status是布尔值。

d8tt03nd

d8tt03nd3#

当你有一个对象的副本时,[checked]属性可能不起作用,在这种情况下,你可以这样使用(change)

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

ldfqzlk84#

希望这能帮助一些人开发自定义样式的自定义复选框组件。这个解决方案也可以用于表单。

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>

复选框.组件.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 {

  }

}

复选框.组件.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>
bzzcjhmw

bzzcjhmw5#

这是我的答案,
在行.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>

英寸
行:行[] = [];
更新component.ts中的行

iyfjxgzm

iyfjxgzm6#

    • 使用可观察的复选框**

你甚至可以选择使用behaviourSubject来利用可观测量的力量,这样你就可以从isChecked$的可观测量开始一系列的React。
在您的组件中. ts:

public isChecked$ = new BehaviorSubject(false);
toggleChecked() {
  this.isChecked$.next(!this.isChecked$.value)
}

在模板中

<input type="checkbox" [checked]="isChecked$ | async" (change)="toggleChecked()">
mpgws1up

mpgws1up7#

[checked]=“isChecked”此isChecked将是组件.ts文件中布尔类型的变量,即如果您在组件.ts中将b isChecked变量设置为true,则ts复选框将被选中,反之亦然。

6ovsh4lw

6ovsh4lw8#

〈输入类型="复选框"[选中]="项目.选中== true"〉

相关问题