ant desgin pro 跨页面传参

1、routerRedux方式

import { routerRedux } from 'dva/router';

goOrder (record){//页面跳转+参数
    this.props.dispatch(routerRedux.push({ 
      pathname: '/giveData/queryOrder',
      params: record.userId
      //query: record.userId //刷新不丢失
    }))
  }
  
this.goOrder(record)}>查订单

使用this.props.location.params接收值
//使用this.props.location.query接收值 刷新不丢失

2、link方式

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

添加用户

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

你可能感兴趣的:(ant,design,pro)