gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-03 13:18:28 25 4
gpt4 key购买 nike

我正在使用react-router browserHistory导航到路径。

browserHistory.push({
pathname: '/mycomponent',
state: { someValue: 'value'},
});

因此这将导航到 mycomponent。一旦我到达我的组件,我想清除关键someValue。这样当我刷新页面时它就不会包含该值。

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

如有任何帮助,我们将不胜感激。

最佳答案

我认为您可以使用 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: {}
});
}
}

关于reactjs - 导航到某个路径后清除位置状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43494044/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com