猿问

ant design pro页面跳转的时候传值问题?

在进行页面跳转的时候,一个页面组件中的值,怎么才能传递到另外一个页面的组件中呢?

(就像这张图片上的我要从"测试权限页面"跳转转到"user用户"页面,怎么才能实现把"测试权限页面"组件中的值传递到"user用户"页面的组件中)

1.首先尝试了event方法,因为ant design pro最后绑定到最后组件的方式不知,未成功。
2.尝试了routerRedux方法,首先是这个方法需要事件触发,其次是这个触发事件有一个页面跳转,通过事件触发的跳转能成功获得数据,但是在像图片上的菜单上进行跳转的时候不能获取,或者触发事件之后再从菜单跳转也是不能获取。

this.props.dispatch(routerRedux.push({ 
    pathname: '/system/user_a',
    params: this.state.str
}))

可能因为我的技术不足没有想出解决方法,希望大神指导


宝慕林4294392
浏览 3234回答 2
2回答

慕运维8079593

把params: this.state.str 换成 query:this.state.str 试试,然后再在新的页面里用 this.props.location.query 获取这个值

慕容森

 router.push({             pathname: '/home/devicedetail',             query: {                 name: 'John,                 age:20             }         });         this.age=+this.props.location.query.age
随时随地看视频慕课网APP

相关分类

Html5
我要回答