react-redux, redux中如何使用生命周期函数?
来源:6-10 如何使用 React-redux(1)
weixin_慕慕7332302
2021-03-02
在react-redux中,所有操作state数据相关的函数都被放在了mapDispatchToProps中,那么假如我需要用到componentDidMount中完成一个axios请求初始化数据呢? 例如之前todolist中配合charles和redux-thunk介绍那章节中完成的那种。是不是就只能放到组件中去做了?
写回答
1回答
-
你可以去通过 dispatch 改变 store 里的数据啊,都存在 store 里也一样啊
012021-03-03
相似问题