Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

show error on form validation angular only after submit

I'm trying to validate template-driven from on angular, but I have a little problem, the field is required then is invalid by default and the error div is shown from the start, I need to show the error div only after submit, the is a native way to do ir ?I know I could create a variable to know if the form is submitted but I want to know if there is native way

<div class="mb-3">
                <label class="form-label">Nombre</label>
                <input 
                  type="text" 
                  class="form-control"
                  placeholder="Nombre"
                  required
                  [(ngModel)]="heroe.nombre"
                  name="nombre"
                  #nombre="ngModel">
            </div>
            <div *ngIf="nombre.invalid" class="alert alert-danger">
                This fild is mandatory
            </div> 
question from:https://stackoverflow.com/questions/65600638/show-error-on-form-validation-angular-only-after-submit

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...