mirror of
https://github.com/KieSun/all-of-frontend.git
synced 2024-11-13 10:28:14 +08:00
test: 测试合并
This commit is contained in:
parent
89ee6b95a6
commit
e743871da8
@ -346,7 +346,7 @@ CSS 选择器是 CSS 规则的第一部分。它是元素和其他部分组合
|
||||
- [ ] [编写高效且可读组件的 5 个最佳实践](https://www.infoq.cn/article/ry4icky5crb1pokvi0ql)
|
||||
- [ ] [designing-react-components-best-practices](https://www.thisdot.co/blog/designing-react-components-best-practices)
|
||||
### 受控组件和非受控组件
|
||||
* 受控组件:在 HTML 中,表单元素(如 input、 textarea 和 select)通常自己维护 state,并根据用户输入进行更新。而在 React 中,可变状态(mutable state)通常保存在组件的 state 属性中,并且只能通过使用 setState() 或者 props 来更新
|
||||
* 受控组件:在 HTML 中,表单元素(如 input、 textarea 和 select )通常自己维护 state,并根据用户输入进行更新。而在 React 中,可变状态(mutable state)通常保存在组件的 state 属性中,并且只能通过使用 setState() 或者 props 来更新
|
||||
* 非受控组件:是一个存储其自己的内部状态,并且您使用查询DOM ref,当你需要它来找到它的当前值,这有点像传统的HTML
|
||||
|
||||
- [ ] 文档
|
||||
|
Loading…
Reference in New Issue
Block a user