-
生命周期啊
查看全部 -
state改变
查看全部 -
实例 - 名片
查看全部 -
Props属性
查看全部 -
JSX语法2
查看全部 -
JSX语法
查看全部 -
准备开发环境
查看全部 -
为什么使用它
查看全部 -
React是什么
查看全部 -
//创建context import React form "react" const context = React.createContext() export default context;
使用context
import ThemeContext from "./theme-context.js" render(){ <ThemeContext.Provider value={...}> <component/> ... </ThemeContext.Provider> }
import ThemeContext from "./theme-context.js" render() { <ThemeContext.Consumer> { theme =>{ console.log(theme) } } </ThemeContext.Consumer> }
查看全部 -
Context 的用途:
设计目的是共享那些对于组件来说全局的数据
不要仅仅为了避免在几个层级下的组件传递props而使用context
查看全部 -
期待查看全部
-
1,jsx是一种语法糖,替代React.createElement()方法。
2,这个方法返回的是ReactElement对象
查看全部 -
生命周期-图
查看全部 -
constructor(props) {
super(props)
this.state = {
comments: ['this is my first reply']
}
}
查看全部
举报
0/150
提交
取消