- The React Workshop
- Brandon Richey Ryan Yu Endre Vegh Theofanis Despoudis Anton Punith Florian Sloot
- 208字
- 2021-06-11 18:28:30
Designing the State of Our Application
A typical pattern in modern web applications is that when there is a form with multiple input fields, one input field might rely on another input field. For example, a password field may affect a password confirmation field by requiring that the two fields match with each other. While this validation is being performed, there is another validation happening which will prevent the user from clicking the submit button if there are errors. In addition, there will be other fields that will affect each other. For example, a password field may require the password to be different from the username entered. For the purpose of our example, we are going to build a form where someone can sign up for an account. They will need to enter:
- A username
- A password
- A password confirmation
- An email address
In terms of validations, we will want to make sure that:
- The username is filled out.
- The password is filled out.
- The password matches the confirmation.
- The email address is at least in the format of (someusername)@(somedomain.com).
- The submit button is grayed out if there are any errors.
Note
We are intentionally using an overly simplistic method of validating email addresses here to avoid complexity.
- Objective-C Memory Management Essentials
- iOS 9 Game Development Essentials
- 垃圾回收的算法與實現
- Visual FoxPro 程序設計
- x86匯編語言:從實模式到保護模式(第2版)
- 老“碼”識途
- Backbone.js Blueprints
- Learning ArcGIS for Desktop
- 單片機C語言程序設計實訓100例
- GitHub入門與實踐
- 算法設計與分析:基于C++編程語言的描述
- Android編程權威指南(第4版)
- 原型設計:打造成功產品的實用方法及實踐
- 軟件測試(慕課版)
- Python Penetration Testing Essentials