GeekEast / blog_comment

0 stars 0 forks source link

React 数据传递 | 雪中印 #36

Open GeekEast opened 5 years ago

GeekEast commented 5 years ago

https://geekeast.github.io/reactstatefunc.html

引言 我们先来看几个问题 React中的变量应该放在那个component里? - 变量的归属 如何判断一个变量需要传入到一个component?- 变量的使用 React的中函数应该放在那个component里? - 方法的归属 如何判断一个函数需要传入到一个component里? - 方法的使用 导图

GeekEast commented 5 years ago

数据向上传递(改变父state):1. state上移 2. func向下传递 数据向下传递(改变子state):1. props 2. context 3. redux

GeekEast commented 5 years ago