admin管理员组文章数量:1352172
let i = 0
function pollDOM() {
console.log(i)
i++
setTimeout(pollDOM, 3000) // try again in 300 milliseconds
}
pollDOM()
The above function use to run every 3 second, output is like:
1
// wait 3 seconds
2
// wait 3 seconds
3
// wait 3 seconds
4
// wait 3 seconds, and so on...
But in Next.js, it produces a result as:
1
2
// wait for 3 seconds
3
4
// wait for 3 seconds
5
6
// wait for 3 seconds, and so on...
Why it is produced this way, two numbers together?
How can I achieve that that I am achieving in normal JavaScript?
let i = 0
function pollDOM() {
console.log(i)
i++
setTimeout(pollDOM, 3000) // try again in 300 milliseconds
}
pollDOM()
The above function use to run every 3 second, output is like:
1
// wait 3 seconds
2
// wait 3 seconds
3
// wait 3 seconds
4
// wait 3 seconds, and so on...
But in Next.js, it produces a result as:
1
2
// wait for 3 seconds
3
4
// wait for 3 seconds
5
6
// wait for 3 seconds, and so on...
Why it is produced this way, two numbers together?
How can I achieve that that I am achieving in normal JavaScript?
Share Improve this question edited May 28, 2022 at 10:51 Roman Mahotskyi 6,6958 gold badges50 silver badges93 bronze badges asked May 28, 2022 at 10:45 Ravi ShankarRavi Shankar 1451 gold badge4 silver badges14 bronze badges 1-
1
what do you mean by
in Next.js
? Can you show us your Component ? Without more information about your code, it's really difficult to help you ! – Olivier Boissé Commented May 28, 2022 at 10:53
1 Answer
Reset to default 7Bacause when your ponent is rendered for a second time you're adding the setTimeout
again. You have to clear your timeout and use useEffect
to set it only once, when the ponent is crated. Also, use setInteval
instead of setTimeout
when you have to repeat something every x seconds. Try:
useEffect(() => {
let i = 0;
function pollDOM() {
console.log(i);
i++;
}
const interval = setInterval(pollDOM, 3000);
return () => clearInterval(interval);
}, [])
本文标签: javascriptSettimeout in next jsreactStack Overflow
版权声明:本文标题:javascript - Settimeout in next jsreact - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743909992a2560217.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论