Join Justin Schwartzenberger for an in-depth discussion in this video Validation: built in, part of Angular Essential Training (2018).
- [Instructor] The Angular forms architecture…has support for two approaches to validation.…Build-in validation and custom validation.…You can apply validators…to FormControl objects in your FormGroup…and even to the FormGroup objects.…Let's start by adding some built-in validators to the form.…The built-in validators are available…on the validators class…found in the Angular Form's scoped package.…So in the media-item-form-component.ts file…we add Validators to the import list at the top…and down in the new FormGroup method object…we can set validators on the FormControls.…
Let's add a pattern validator for the name.…We will use a regular expression…that only allows Strings that are alphanumeric.…Letters or numbers.…With support for dashes, spaces and forward slashes.…So anything entered for a mediaItem name…that does not adhere to that…we want to mark as invalid.…So we'll copy that from the sample.txt file…that's inside the project.…So the second parameter option on a new FormControl…is a Validator.…
So we add a call to Validators.pattern…
Author
Updated
3/1/2018Released
10/31/2016Justin Schwartzenberger steps through the framework one feature at a time, focusing on the component-based architecture of Angular. Learn what Angular is and what it can do, as Justin builds a full-featured web app from start to finish. After mastering the essentials, you can tackle the other project-based courses in our library and create your own Angular app.
- What is Angular?
- Setting up an Angular template
- Creating a component
- Binding events and properties
- Getting data to components
- Using directives and pipes
- Creating Angular forms
- Validating form data
- Understanding dependency injection
- Providing services
- Making HTTP calls
- Routing
Skill Level Beginner
Duration
Views
Q: This course was updated on 03/01/2018. What changed?
A: The following topics were updated: directives and pipes, forms, dependency injection and services, HTTP, and routing.
Related Courses
-
Introduction
-
Welcome1m 27s
-
Why use AngularJS 2?1m 36s
-
Using the exercise files1m 51s
-
Basics of TypeScript2m 24s
-
Course overview1m 2s
-
-
1. Architecture Overview
-
Directives and pipes1m 40s
-
Data binding1m 53s
-
Dependency injection1m 54s
-
Data persistence1m 47s
-
Routing1m 50s
-
2. Components
-
NgModule and the root module5m 59s
-
Component metadata2m 4s
-
The component selector2m 12s
-
The component template2m 59s
-
Styling a component5m 3s
-
Property binding2m 30s
-
-
3. Directives and Pipes
-
Structural directives: ngFor3m 34s
-
Attribute directives: custom3m 53s
-
Using directive values3m 36s
-
Angular pipes: built in3m 1s
-
Angular pipes: custom4m 28s
-
4. Forms
-
Angular forms1m 29s
-
Template-driven forms4m 45s
-
Model-driven forms4m 19s
-
Validation: built in3m 28s
-
Validation: custom3m 2s
-
Error handling5m 10s
-
-
5. Dependency Injection and Services
-
Services in Angular2m 22s
-
Class constructor injection2m 39s
-
The Inject decorator3m 40s
-
Injection token3m 36s
-
6. HTTP
-
The Angular HttpClient2m 5s
-
-
7. Routing
-
Router links2m 36s
-
Conclusion
-
Next steps1m 20s
-
- Mark as unwatched
- Mark all as unwatched
Are you sure you want to mark all the videos in this course as unwatched?
This will not affect your course history, your reports, or your certificates of completion for this course.
CancelTake notes with your new membership!
Type in the entry box, then click Enter to save your note.
1:30Press on any video thumbnail to jump immediately to the timecode shown.
Notes are saved with you account but can also be exported as plain text, MS Word, PDF, Google Doc, or Evernote.
Share this video
Embed this video
Video: Validation: built in