如果输入长度小于3
,我想停用按钮: <input type="text" [(ngModel)]="newListItem">
<button [disabled]="{ disabled : newListItem.length < 3 }"></button>
但是这段代码不起作用。我怎样才能实现目标?
答案 0 :(得分:12)
您只需要将表达式传递给disabled
属性,就不需要创建对象:
<button [disabled]="newListItem.length < 3"></button>
答案 1 :(得分:0)
试试这个:
validateLength() { return this.newListItem.length < 3; }