react关闭页面时间怎么设置
时间:2023-01-03 14:19
react设置关闭页面时间的方法:1、在constructor中设置5秒的时间值;2、在componentDidMount中添加定时器;3、在render中添加判断即可,代码如“<Result status="403"title="403"subTitle="..."extra={<Button>{this.state.dlgTipTxt}</Button>}/>”。 本教程操作环境:Windows10系统、react18.0.0版、Dell G3电脑。 react关闭页面时间怎么设置? react中实现简单倒计时关闭页面 首先在constructor中设置5秒的时间值 componentDidMount中添加定时器 render中添加判断 推荐学习:《react视频教程》 以上就是react关闭页面时间怎么设置的详细内容,更多请关注gxlsystem.com其它相关文章!constructor (props) {
super(props)
this.state={
seconds: 5,
dlgTipTxt: '5s后关闭页面'
};
}
componentDidMount () {
let timer = setInterval(() => {
this.setState((preState) =>({
seconds: preState.seconds - 1,
dlgTipTxt: `${preState.seconds - 1}s后自动关闭`,
}),() => {
if(this.state.seconds == 0){
clearInterval(timer);
window.close()
}
});
}, 1000)
}
render() {
return (
<Result
status="403"
title="403"
subTitle="抱歉你没有权限访问页面"
extra={
<Button>
{this.state.dlgTipTxt}
</Button>
}
/>
)
}