首页 > 解决方案 > 清理本地存储后如何进行重定向?

问题描述

清理本地存储后,如何重定向到所需的页面?现在出现一个问题,用户按下按钮——退出,localalstorage被清空,但是重定向没有发生。

const onHandleSignOut = () => {
    localStorage.removeItem('session');
    return <Redirect to="/auth" />
}

<li className="header__mainmenu-item" onClick={() => onHandleSignOut()}>
    <FaSignOutAlt />
</li>

标签: reactjsreact-router-dom

解决方案


this.props.history.push("/auth");

希望对你有帮助...


推荐阅读