我们如何this.props.history.push('/page')
在React-Router v4中传递参数?
.then(response => {
var r = this;
if (response.status >= 200 && response.status < 300) {
r.props.history.push('/template');
});
我们如何this.props.history.push('/page')
在React-Router v4中传递参数?
.then(response => {
var r = this;
if (response.status >= 200 && response.status < 300) {
r.props.history.push('/template');
});
您可以使用,
this.props.history.push("/template", { ...response })
要么
this.props.history.push("/template", { response: response })
然后您可以/template
通过以下代码从组件访问已解析的数据,
const state = this.props.location.state
阅读更多有关React Session History Management的信息
不需要与路由器一起使用。这对我有用:
在您的父页面中,
然后可以在ComponentA或ComponentB中访问
对象,包括this.props.history.push方法。