标签: angular
如果属性有值,我试图将输入禁用属性设置为true,但是如果属性为null或空字符串,我现在使用的内容似乎返回true。
[attr.disabled]="userForm.value.email? true: false"
答案 0 :(得分:1)
要删除绑定属性,值必须为false而不是[attr.disabled]="userForm.value.email? true: null"
false
[attr.disabled]="userForm.value.email? true: null"
{{1}}