关于 提供器与连接器
1 在根目录index.js中导入
import { Provider } from "react-redux";
然后需要的那个组件处 导入
import { connect } from "react-redux";
在组件.js末尾添加
const mapStateToProps = (state) => {
return {
inputValue: state.inputValue,
};
};
export default connect(mapStateToProps, null)(TodoList);
其中 mapStateToProps
代表一个映射关系, 将state
映射到组件里面的props
里
return
里面的内容根据需要填写
最后暴露出去
export default connect(mapStateToProps, null)(TodoList);