Skip to content

Commit 2baf877

Browse files
committed
Update content and add resources
1 parent 25a0d9b commit 2baf877

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -333,6 +333,8 @@
333333
阅读资源:
334334

335335
1. [React 中文文档](https://react.docschina.org/docs/hello-world.html)
336+
2. [掘金 - 图解 React](https://juejin.im/post/5b481f6b51882519ad6175c2)
337+
2. [掘金 - 200行代码实现简版react](https://juejin.im/post/5c0c7304f265da613e22106c)
336338

337339

338340
2. ### React 的主要特点是什么?
@@ -371,6 +373,10 @@
371373

372374
这里你可以访问 [Babeljs](https://babeljs.io/repl) 在线体验一下。
373375

376+
阅读资源:
377+
378+
1. [从零开始实现一个React(一):JSX和虚拟DOM ](https://github.com/hujiulong/blog/issues/4)
379+
374380

375381
4. ### 元素和组件有什么区别?
376382

@@ -544,6 +550,10 @@
544550
setState({ name: 'John' }, () => console.log('The name has updated and component re-rendered'))
545551
```
546552
553+
阅读资源:
554+
555+
1. [掘金 - 揭密React setState](https://juejin.im/post/5b87d14e6fb9a01a18268caf)
556+
547557
13. ### HTML 和 React 事件处理有什么区别?
548558
549559
1. 在 HTML 中事件名必须小写:
@@ -1538,6 +1548,10 @@
15381548
)
15391549
```
15401550
1551+
阅读资源:
1552+
1553+
1. [掘金 - 精读《React 八种条件渲染》](https://juejin.im/post/5b285c0d5188257494641d0b)
1554+
15411555
15421556
68. ### 为什么在 DOM 元素上展开 props 需要小心?
15431557
@@ -4145,6 +4159,10 @@
41454159
}
41464160
```
41474161
4162+
阅读资源:
4163+
4164+
1. [掘金 - 30分钟精通React Hooks](https://juejin.im/post/5be3ea136fb9a049f9121014)
4165+
41484166
227. ### Hooks 需要遵循什么规则?
41494167
41504168
为了使用 hooks,你需要遵守两个规则:

0 commit comments

Comments
 (0)