ant desgin pro 跨页面传参

1 link方式

import { Link } from 'react-router-dom';
或者
import { Link } from 'dva/router';

<Link to={{pathname:'/user',query:id}}>添加用户</Link>

  使用v2,v3this.props.location.query或者v4的this.props.location.search接收值

2 routerRedux方式

import { routerRedux } from 'dva/router';

goOrder (record){//页面跳转+参数
    this.props.dispatch(routerRedux.push({ 
      pathname: '/giveData/queryOrder',
      params: record.userId
    }))
  }

<a className={styles.oprLink} onClick={()=>this.goOrder(record)}>查订单</a>

使用this.props.location.params接收值

 

posted @ 2018-12-24 11:16  米虫的小圈子  阅读(486)  评论(0编辑  收藏  举报