react和redux怎么连接?
Posted
技术标签:
【中文标题】react和redux怎么连接?【英文标题】:How to connect react and redux? 【发布时间】:2019-08-11 17:53:43 【问题描述】:我是 ReactJS 的新手。我正在尝试同时使用 ReactJS 和 redux。
谁能解释一下如何将两者联系起来?
另外,在 redux reducer 中,我们通常将 intialState 设置为某个值。如何将 react 组件 state 中已经存在的值设置为 reducer 的 initialState?
下面是在我的reducer中完成的初始化,
const initialState =
pricing:
total:0
,
appliedPromo:false
下面是我在 react 组件中的状态,
state =
pricing: ,
itemDetails: ,
error: false,
seeDetails:false,
showPromoCode:false,
promocodeApplied:false,
user_discount:""
我会使用 axios 更新状态,
componentDidMount()
axios
.get("https://purchsum-fb152.firebaseio.com/data.json")
.then(response =>
this.setState( pricing: response.data.Pricing, itemDetails: response.data.itemDetails );
)
.catch(error =>
this.setState( error: true );
);
然后我将 state 连接到 props,
const mapStateToProps = (state) =>
return
total: state.pricing.total,
promoApplied: state.appliedPromo
const mapDispatchToProp = dispatch =>
return
onDiscount:()=>dispatch(type:"DISCOUNT",value:10,percentage:100)
export default connect(mapStateToProps,mapDispatchToProp)(PurchaseOrder);
只有当我将 initialState 设置如下时,该应用程序才能工作,
const initialState =
pricing:
total:108.03
,
appliedPromo:false
我不想设置它(没有硬代码)。相反,我希望 reducer 采用在组件中更新的状态值。
【问题讨论】:
在这里回答***.com/questions/34458261/… How to get simple dispatch from this.props using connect w/ Redux?的可能重复 【参考方案1】:我不想设置它(没有硬代码)。相反,我希望减速机采取 在组件中更新的状态值。
不幸的是,这不是 redux 模式。您必须设置减速器加载的初始状态 - 我不建议这可以或应该动态完成。
但是,您不能创建一个操作来在您的组件挂载时将状态设置为您想要的状态吗?
【讨论】:
以上是关于react和redux怎么连接?的主要内容,如果未能解决你的问题,请参考以下文章
从 redux、aggrid 和 react 钩子重新选择/连接的组合
使用 react-redux 与 react-native 连接时的不变违规
Jest/Enzyme 单元测试:如何将存储传递给使用 redux 4 和 react-redux 6 连接功能的浅层组件