星期
React学习整理之数据流向
首页 > 我的学习历程    作者:月丶   2018年7月25日 16:17 星期三   热度:3192°   百度已收录  
时间:2018-7-25 16:17   热度:3192° 
react数据流向.png

最初的数据由services中的函数请求接口获取,函数中的request,为utils目录下的request.js,这是一个封装的请求接口函数。再由model中effects 封装成增删查改的函数,之后在写界面时通过装饰器

@connect(({ rule, role, loading }) => ({

  rule,
  role, 
  loading: loading.models.rule,
}))
componentDidMount() {
    this.props.dispatch({
      type: 'role/fetch',
    });
    this.props.dispatch({
      type: 'rule/fetch',
    });

  }

const { role: { data }, form } = this.props;

role:{data} 即为 从接口获取的数据


了解更多:https://www.cnblogs.com/bjlhx/p/9009056.html

二维码加载中...
本文作者:月丶      文章标题: React学习整理之数据流向
本文地址:http://silver.eleuu.com/?post=14
版权声明:若无注明,本文皆为“月丶”原创,转载请保留文章出处。

返回顶部    手机版本    会员注册   
版权所有:月丶    博主: 月丶    团队首页电子乌托邦  博客框架:emlog   蜀ICP备18008322号   
  
//音乐播放器