Angular 2 forms
Web applications are usually doing one of two things. Either displaying data or collecting data. The way we collect data through web apps is the use of forms. In more specifically, <form>
elements.
When we build forms in web apps, we architect them to do a common set of things,
- for a way to collect data,
- for a way to know when user changes data,
- for validating data
- for showing errors to users.
Since forms are a common piece of web app development, Angular has dedicated code endless framework, to help when working with forms.
Angular forms builds upon bind data and bind events, and provides data binding, both in and out. It also provides indicators out of the box for you to know when form fields have changed from their original value, and when they are invalid.
Angular forms provides
- Built-In data Validators
- Custom Validator - the ability to create your own Validator
- Async Validators - that can run validation has the user changes input value.
- Form Object Representation - It also wraps up form fields into an object structure for ease of use on submission.
There are two common approaches to building forms in Angular.
- Template Driven, where the marjority of the form logic is crafted in the template mark up.
- Model Driven, where the marjority of the form logic is crafted in the component class. Overall, the form support built into Angular covers a wide range of input collection scenarios.
Latest Post
- Dependency injection
- Directives and Pipes
- Data binding
- HTTP Get vs. Post
- Node.js is everywhere
- MongoDB root user
- Combine JavaScript and CSS
- Inline Small JavaScript and CSS
- Minify JavaScript and CSS
- Defer Parsing of JavaScript
- Prefer Async Script Loading
- Components, Bootstrap and DOM
- What is HEAD in git?
- Show the changes in Git.
- What is AngularJS 2?
- Confidence Interval for a Population Mean
- Accuracy vs. Precision
- Sampling Distribution
- Working with the Normal Distribution
- Standardized score - Z score
- Percentile
- Evaluating the Normal Distribution
- What is Nodejs? Advantages and disadvantage?
- How do I debug Nodejs applications?
- Sync directory search using fs.readdirSync