Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/noiron/react-form-demo
https://github.com/noiron/react-form-demo
Last synced: about 4 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/noiron/react-form-demo
- Owner: noiron
- Created: 2020-02-23T10:07:16.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T08:04:05.000Z (almost 2 years ago)
- Last Synced: 2024-04-18T06:26:42.675Z (7 months ago)
- Language: TypeScript
- Size: 4.98 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
一个表单的示例,使用 Antd 的 Form 组件,并自行处理表单数据。
## 表单的思考
构建后台时表单是不可或缺的,需要通过表单来添加记录、修改数据。
表单中会涉及到这些功能:
- 数据的输入
- 数据的验证
- 收集输入的所有数据
- 提交数据前对所有数据的验证
- 提示出错的数据
- ...如果使用的是 Antd 的 `Form` 组件,可以使用 `Form.create()` 来处理表单数据。
这里的代码会尝试不使用 `Form.create()`,而是自行处理表单数据。