我正在使用react-router-redux
,
假设我已经定义url
为/go-here/${routeId}
并且我有routeId
,数据对象也为
data = {
one: 'one',
two: 'two',
three: 'three'
}
使用调度,我正在路由到一个新页面,如下所示,
this.props.dispatch(routeAction.push(url));
导航到新页面后,我想访问数据对象,我该怎么做?
我正在使用react-router-redux
,
假设我已经定义url
为/go-here/${routeId}
并且我有routeId
,数据对象也为
data = {
one: 'one',
two: 'two',
three: 'three'
}
使用调度,我正在路由到一个新页面,如下所示,
this.props.dispatch(routeAction.push(url));
导航到新页面后,我想访问数据对象,我该怎么做?