1.写法

import { connect } from 'redux';
import { loading, asyncRequset } from '../../actions/common';


export default connect(({ counter, homePage, common }) => ({
  /**
   * 取到3个reducer的值
   * 通过 homePage 可以获取到绑定在该 reducer 上的所有数据
   * 例如:const { listData } = this.props.homePage
   */
  counter, homePage, common
}), (dispatch) => ({
  getAsyncRequset(text, data, url) { // 通过 this.props.getAsyncRequset 调用
    dispatch(asyncRequset(text, data, url))
  },
  getLoading() { // 通过 this.props.getLoading 调用
    dispatch(loading())
  }
}))(MyIndex)

.

相关文章:

  • 2022-12-23
  • 2021-06-18
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-10
  • 2021-12-03
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-09-11
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-16
相关资源
相似解决方案