Redux 中发送异步请求获取数据 步骤 生命周期函数 componentDidMount(组件被挂载到页面之后,会自动执行) store.dispatch reducer return strore store.subscribe Update State 1 2 3 4 5 6 7 8 9 10 11componentDidMount () { axios.get('http://e.com/api/index/index') .then((res) => { const data = res.data; const action = initListAction(data) store.dispatch(action); }) .catch(() => { alert('error') }) }