https://blog.csdn.net/zrcj0706/article/details/79664532 (React中如何实现系统内外的跳转)
React 页面跳转+传递参数+取参数(简单直接)
1传参
//这里可以onClick,实现点击跳转传参
this.props.history.push("/my/index", {
dotData: record //需要传递的参数
});
2.取参,
/my/index页面取参数
const messages = this.props.location.state.dotData
onClick={this.handle}
handle(){
const w=window.open('about:blank');
w.location.href='你的地址'
}
react点击按钮跳转到一个新的窗口的功能实现