angular – 如何基于选择表单启用和禁用mat按钮

前端之家收集整理的这篇文章主要介绍了angular – 如何基于选择表单启用和禁用mat按钮前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这是我的按钮:
<button class="example-20-width" mat-raised-button disabled>Edit Client</button>

如何根据选择的表格是否为emtry来控制它并禁用它?

这是我的字段形式:

<mat-form-field class="example-full-width">
                    <mat-select  placeholder="Select customer">
                      <mat-option *ngFor="let food of books.data" 
                          [value]="food.company">
                        {{food.company}}
                      </mat-option>
                      <mat-option >
                        </mat-option>
                    </mat-select>
   </mat-form-field>
如果你看 Angular Material Demos (button)这是一个较旧版本的角度metrail演示,有一个按钮执行此操作.

这个演示对应于(现在已经过时了)和andgulr github中的演示.见:github.com – Angular Material – src/demo-app/button

你可以简单地使用:

<button mat-button [disabled]="isDisabled">

其中isDisabled是组件中的布尔定义.

原文链接:https://www.f2er.com/angularjs/140367.html

猜你在找的Angularjs相关文章