💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
#### 1. 使用react-redux 的Provider组件传入store时,在子组件中,this.context是空对象??? - 原因:子组件没有声明 contextTypes - 解决: ``` class App extends React.Component{ //注意这里必须要显式的写出context参数 constructor(props,context){ console.log(this.context); } componentDidMount(){ console.log(this.context) //这里不用显示的写context参数 } } App.contextTypes = {store:PropTypes.object.isRrequired} ``` > 总结:react中,`contex`t需要声明`contextTypes`才能拿到,只有上层组件childContext和context的type 匹配才会对下层组件可见。