issues
search
shawlp
/
interview-codes
1
stars
0
forks
source link
react组件传值方式
#23
Open
shawlp
opened
3 years ago
shawlp
commented
3 years ago
父组件向子组件通信:通过props通信
子组件向父组件通信:调用通过props传过来的方法,并想要传递的信息作为参数,传递到父组件的作用域中
跨层级通信:
使用react自带的Context进行通信,createContext创建上下文,useContext使用上下文
使用Redux或者Mobx等状态管理库
使用订阅发布模式