开发者问题收集

如何禁用按钮 Angular?

2017-09-21
112

我尝试了这个函数:

public hireDisableForm() {
    const dis =  this.person.birthDate == '' || this.person.passportNumber == '' || this.person.passportSerie == '';
    return (!dis) ? null : dis;
  }

它返回 true ,我在 console.log() 中检查了这一点。

使用:

<button class="hire1" [disabled]="hireDisableForm()">Save</button>

它不会禁用按钮。

1个回答

你的做法太复杂了!你可以做得更简单:

public hireDisableForm() {
    return !(this.person.birthDate && 
           this.person.passportNumber && 
           this.person.passportSerie);
}
Faly
2017-09-21