ant design pro 跨页面传参

1、routerRedux方式

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

this.goOrder(record)}>查订单

参数接收: 使用this.props.location.params接收值。


2、link方式

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

添加用户

参数接收:使用v2,v3的 this.props.location.query或者v4的this.props.location.search接收值。


原文:https://blog.csdn.net/qq_25252769/article/details/79958487 

其他参考方法:ant design列表页带参数跳转到详情页
 

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