我认为您可以使用browserHistory
replace方法将历史状态替换为
somevalue未定义的新状态:
export class myComponent extends component { componentWillMount() { const value = this.props.location.state.somevalue; // clear state.somevalue from history browserHistory.replace({pathname: '/mycomponent',state: {} }); }}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)