gpt4 book ai didi

javascript - 在 ReactJs 中呈现时,react-countdown 会重置

转载 作者:行者123 更新时间:2023-12-04 08:08:26 24 4
gpt4 key购买 nike

我正在创建一个游戏,用户可以在一段时间内尽可能多地点击按钮。

我已经使用 react-countdown 来创建计时器。但是当我点击一个按钮时,计时器会自动重置。

这是我的代码。

import React, { useState } from "react"
import Countdown from 'react-countdown';

function App() {

const [name, setName] = useState("")
const [isLogin, setIsLogin] = useState(false)
const [counter, setCounter] = useState(0)

const submitName = () => {
setIsLogin(true)
}

const updateCounter = () => {
console.log(counter)
setCounter(counter + 1)
}

return (
<div>
{!isLogin ? (
<div>
<input
style={{ width: 300, height: 30 }}
placeholder="Input name here"
value={name}
onChange={e => setName(e.target.value)}
/>
<button
style={{ width: 50, height: 20, background: "red" }}
onClick={() => submitName()}
>Go</button>
</div>
) : (
<div
style={{ width: "100vw", height: "100vh", background: "yellow" }}>
<Countdown date={Date.now() + 100000} />
<h1>{name}</h1>
<h3>Click counter: {counter} </h3>
<button
style={{
width: 100,
height: 50,
background: "red",
border: "none",
borderRadius: 25,
color: "white",
cursor: "pointer"
}}
onClick={() => updateCounter()}>Click here!</button>
</div>
)
}
</div>
);
}

export default App;

问题是当我点击按钮时,setCounter(counter + 1) 正在运行并重新呈现页面。这使计数器重置。我知道它为什么有问题,但我无法修复它。

最佳答案

您需要内存倒计时组件:

const CountdownWrapper = () => <Countdown date={Date.now() + 100000} />;
const MemoCountdown = React.memo(CountdownWrapper);

// usage
<MemoCountdown/>

之前,在每次渲染时 Date.now() 都会获得一个重置计时器的新值。

Edit Countdown reset

关于javascript - 在 ReactJs 中呈现时,react-countdown 会重置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66104667/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com