赞
踩
React.createContext()
用来创建共享数据上下文对象const defaultValue = {
a:1,
b:2,
c:3
}
//创建对象并导出
const MyContext = React.createContext(defaultValue)
export default = MyContext
第一种,在组建中注册contextType,然后获取
// 底层组件 - class 组件
import Context from "../../"
class app extends React.Component {
// 指定 contextType 读取当前的 theme context。
render() {
const theme = this.context // React 会往上找到最近的 theme Provider,然后使用它的值。
return
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。