无法单击Nebular主题角的nb-复选框

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

我是Nebular主题的新手。我有一个复选框,但是不起作用。

HTML

<nb-checkbox [value]="checked" (change)="toggle($event)"></nb-checkbox>

TypeScript

  toggle(checked: any) {    
    this.checked = checked.target.checked;
  }

Module.ts

//import
import { NbCheckboxModule } from '@nebular/theme';

imports: [NbCheckboxModule]

切换功能被称为正常,但未选中复选框。

我已经进行了很长时间的调试,但是无法确定问题所在。关于可能出什么问题的任何建议?谢谢。

Angular版本:7.1

标准版:^ 3.5.0

angular typescript checkbox angular7 nebular
1个回答
1
投票

我认为您应该像在these示例中那样使用它它与valuechecked输入一起使用

<nb-checkbox [checked]="checked" (checkedChange)="toggle($event)">Toggle me</nb-checkbox>

我通过工作示例为您创建了stackblitzhttps://stackblitz.com/edit/angular-nb-checkbox?file=src/app/app.component.ts

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