在超时时响应重定向页面

时间:2019-03-28 13:55:42

标签: reactjs redirect timer

我正在尝试在setTimeOut上使用React重定向页面。对于一般开发人员来说仍然是新手,对React来说还是新手,所以我有点迷茫。以下是我到目前为止所拥有的...

componentDidMount() {
        setTimeout(() => {
            ???????????('/')
        }, 1000)
    }

1 个答案:

答案 0 :(得分:1)

设法弄清楚了。

componentWillMount(){
        setTimeout(() => { 
            this.props.history.push('/');
        }, 5000)
    }