Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/noiron/react-form-demo


https://github.com/noiron/react-form-demo

Last synced: about 4 hours ago
JSON representation

Awesome Lists containing this project

README

        

一个表单的示例,使用 Antd 的 Form 组件,并自行处理表单数据。

## 表单的思考

构建后台时表单是不可或缺的,需要通过表单来添加记录、修改数据。

表单中会涉及到这些功能:

- 数据的输入
- 数据的验证
- 收集输入的所有数据
- 提交数据前对所有数据的验证
- 提示出错的数据
- ...

如果使用的是 Antd 的 `Form` 组件,可以使用 `Form.create()` 来处理表单数据。

这里的代码会尝试不使用 `Form.create()`,而是自行处理表单数据。