我有包装输入字段的组件。在组件中,我Control
从@Input() inputControl: Control;
. 在模板中,如果不需要组件中的输入字段,我有显示消息的跨度。
<span
class="input-label-caption">
(optional)
</span>
和输入
<input
*ngIf="inputMode=='text' || inputMode=='email'"
type="{{inputMode}}"
[ngFormControl]="inputControl"
placeholder="{{placeholder}}"
class="input-text"
[disabled]="inputDisabled"
[ngClass]="{
'inverted': inverted
}">
inputControl
如果包含表单对象,我如何读取它Validators.required
?我想知道我是否可以像这样使用它
<span
class="input-label-caption"
*ngIf="!inputControl.validators.required"
>
(optional)
</span>