其實在react中實現倒計時的跳轉方法有不少中,其中我認爲較爲好用的就是經過定時器更改state中的時間值。javascript
首先在constructor中設置10秒的時間值:java
constructor () { super() this.state={ seconds: 10, }; }
而後在componentDidMount中添加定時器:react
componentDidMount () { let timer = setInterval(() => { this.setState((preState) =>({ seconds: preState.seconds - 1, }),() => { if(this.state.seconds == 0){ clearInterval(timer); } }); }, 1000) }
而後在render中添加判斷跳轉this
if (this.state.seconds === 0) { window.location.href='http://www.cnblogs.com/a-cat/'; }
這種就能夠完成倒計時跳轉了!component