- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 React js 的新手。我通过 create-react-app 创建了一个项目,它实际上是一个“在线测试应用程序”。我在测试屏幕的一个模块中遇到问题 which looks like this .在我的 jsx 代码中,我像这样呈现状态变量的值。
import React, { Component } from 'react';
import { Button, Radio, FormGroup } from 'react-bootstrap';
import Aux from '../../Auxilary/Auxilary';
import { Redirect } from 'react-router-dom';
import './TestScreen.css';
class TestScreen extends Component{
state = {
total_questions:60,
current_question:1,
time: 50,
minutes: null,
seconds: null
};
changeQuestion = () => {
const question = this.state.current_question;
this.setState({current_question: question+1});
};
componentDidMount(){
const self = this;
let timer = setInterval(function() {
const newTime = self.state.time -1;
const minute = Math.floor(self.state.time/60);
const second = ("0" + self.state.time%60).slice(-2);
self.setState({minutes: minute, seconds: second, time: newTime},() =>{
console.log("Value of state Time: " + self.state.time);
});
}, 1000)
}
render(){
return(
<Aux>
<div className="question-timer">
<div className="question-number">
<h3>Question {this.state.current_question}/{this.state.total_questions}</h3>
</div>
<div className="test-timer">
{this.state.time === 0 ? <Redirect to='/' /> : console.log("Some Error Occured")}
<h3>{this.state.minutes}:{this.state.seconds}</h3>
</div>
</div>
<div className="test-window">
<div className="test-question-statement">
<h2><label>Test Question Statement</label></h2>
</div>
<div className="question-options">
<FormGroup>
<Radio name="radioGroup">
Option 1
</Radio>{' '}
<Radio name="radioGroup">
Option 2
</Radio>{' '}
<Radio name="radioGroup">
Option 3
</Radio>
</FormGroup>
</div>
{/****************************************Next Question Button************************************************/}
<div className="next-question-button-container">
<Button onClick={this.changeQuestion} bsClass="xavor-style">Next</Button>
</div>
{/*********************************End of Next Question Button************************************************/}
</div>
</Aux>
);
}
}
export default TestScreen;
我面临的问题是屏幕上呈现的时间比更新状态晚一步。由于我使用回调函数来更新状态,因此控制台上显示的值是准确的,但我的 JSX 中呈现的值落后了一步。例如:如果我的控制台打印“状态时间:1”,则呈现的值将为 0:02。如何更新状态的呈现值?任何帮助或建议将不胜感激。提前致谢。
最佳答案
当时间到达 0 时,您在渲染时正在重定向。这就是您看不到 0:00 的原因。而不是直接重定向。在 componentDidUpdate
渲染后检查,如果 time === 0
,如果是则清除间隔,并更新状态上的 redirect
属性.重新呈现 View 时,redirect: true
状态将触发实际的重定向。
注意:React 的 setState是异步的。当状态更新依赖于当前状态时,最好使用 updater 方法。
class TestScreen extends Component{
state = {
total_questions:60,
current_question:1,
time: 50,
minutes: null,
seconds: null,
redirect: false,
};
changeQuestion = () =>
this.setState((prevState) => ({
current_question: prevState.current_question + 1
}));
componentDidMount() {
// assign the timer to this.timer, so you can clear it in componentWillUnmount
this.timer = setInterval(() =>
this.setState(({ time }) => ({
minutes: time / 60,
seconds: ("0" + time % 60).slice(-2),
time: time - 1
}))
, 1000)
}
componentDidUpdate() {
const { time, redirect } = this.state;
if(!reidrect && time === 0 && ) {
clearInterval(this.timer);
this.setState({
redirect: true
});
}
}
render() {
const { time, redirect, minutes, seconds } = this.state;
// just the relevant JSX parts
return (
<div className="test-timer">
{redirect ? <Redirect to='/' /> : console.log("Some Error Occured")}
<h3>{minutes}:{seconds}</h3>
</div>
);
}
}
关于javascript - React js 渲染状态值落后一步,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51299255/
let config = [{ name: 1, state: 1, output: 'Y', }, { name: 2, state: 1, outp
我在使用 C# 统一编程时遇到了一些问题。我试图在开始游戏时请求一个插页式广告,这样我就可以在玩家死亡 5 次时显示它。问题是,当我遇到第 5 次死亡时,广告将不会显示。当我尝试在关卡开始时请求广告时
我有 JPanel,从中打开一个扩展 AbstractAIFDialog 的搜索条件对话框。它由搜索条件文本字段、结果 TableView 和搜索按钮组成。单击“搜索”后,在此对话框中,我需要显示进度
所以,我的蛇做了连续的运动,但如果我按任意键,它就会及时倒退并前后滞后。这是视频:https://youtu.be/KCesu5bGiS8 我的猜测是更快地更新按键输入,但是当我这样做时,所有内容都会
我正在尝试获得 TODAY THE CURRENT 的所有选票,并且我几乎已经通过以下 mysql 查询实现了这一点,但是有一个问题。 这段代码让我获得了今天的选票: SELECT COUNT(*)
我正在使用 RS256 算法生成 Azure AD token 。 当我解码 https://jwt.io/ 中的 token 时发出的时间比请求时间晚了 5 分钟。 请求的时间:美国标准时间晚上 9
当我查询 NOW() 时,mysql 返回的时间与服务器上的当前时间相差大约 -30 秒。有任何想法吗?我尝试查看配置文件,但一无所获。我正在运行 5.1.37 版本 SELECT NOW() 最佳答
我正在做一个开源项目。我首先 fork 这个项目,将它克隆到我的机器上,然后直接在 master 分支上进行了更改。我提交了这些更改并将其推到我的 fork 上。然后我打开了该更改的 pull 请求。
所以我用了大约 20 分钟写出了这个程序,并花了最后 40 分钟绞尽脑汁地想为什么它返回 21131 而不是 21124,这似乎是正确的答案。我知道代码没有问题(很可能),因为它适用于我测试的每个数字
我在使用 QueryDsl 日期算法时遇到问题。它对我不起作用,会引发以下错误: Caused by: org.postgresql.util.PSQLException: ERROR: functi
嗨,我正在玩 Angular ui 时间选择器 http://angular-ui.github.io/bootstrap/ 当我使用它时,我的日期晚了 1 小时,我该如何更改它以及为什么? JS
我是一名优秀的程序员,十分优秀!