reactjs – 导航到某个路径后清除位置状态

前端之家收集整理的这篇文章主要介绍了reactjs – 导航到某个路径后清除位置状态前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用react-router browserHistory导航到路径.
browserHistory.push({
  pathname: '/mycomponent',state: { someValue: 'value'},});

所以这将导航到mycomponent.一旦我到达mycomponent,我想清除关键someValue.所以当我刷新页面时,它不会包含该值.

export class myComponent extends component {
  componentWillMount() {
    const value = this.props.location.state.someValue;
    // clear state.someValue from history
  }
}

任何帮助,将不胜感激.

我认为您可以使用browserHistory替换方法将历史状态替换为没有someValue定义的新状态:
export class myComponent extends component {
    componentWillMount() {
        const value = this.props.location.state.someValue;
       // clear state.someValue from history
        browserHistory.replace({
           pathname: '/mycomponent',state: {}
       });
    }
}
原文链接:https://www.f2er.com/react/300755.html

猜你在找的React相关文章