{this.state.dlgTipTxt}}/>"."/> {this.state.dlgTipTxt}}/>".">
React에서 페이지 닫는 시간을 설정하는 방법: 1. 생성자에서 시간 값을 5초로 설정합니다. 2. componentDidMount에 타이머를 추가합니다. 3. "f54705f1367f85f4300f489eb76c5550{this.state.dlgTipTxt}a1cb88e6789f399807801ea3799938af}/>".
이 튜토리얼의 운영 환경: Windows 10 시스템, 반응 버전 18.0.0, Dell G3 컴퓨터.
반응 시 페이지를 닫는 시간을 어떻게 설정하나요?
반응에서 페이지를 닫는 간단한 카운트다운을 구현하세요
먼저 생성자에서 시간 값을 5초로 설정하세요
constructor (props) { super(props) this.state={ seconds: 5, dlgTipTxt: '5s后关闭页面' }; }
commentorDidMount에 타이머 추가
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> } /> ) }
권장 학습: " 반응 동영상 튜토리얼 》
위 내용은 반응으로 페이지를 닫는 시간을 설정하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!