I'm working with a Reactive form and I have noticed in some tutorials they do the following:
HTML
.
.
<input type="text" formControlName="firstName" required>
.
.
TS
.
.
firstName: ['', Validators.required]
.
.
QUESTION:
Why do I need to specify "required" in the HTML if I just do it in the TS file it works fine?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…