gpt4 book ai didi

JavaScript 堆栈爆炸

转载 作者:行者123 更新时间:2023-11-28 12:39:33 25 4
gpt4 key购买 nike

这个article说下面的代码会炸毁堆栈:

function fetchLatest() {
$.getJSON('/wait?id=' + last_seen, function(d) {
$.each(d, function() {
last_seen = parseInt(this.id, 10) + 1;
ul.prepend($('<li></li>').text(this.text));
});
fetchLatest();
});
}

the client-side JavaScript simply uses jQuery’s getJSON method to perform long-polling against a simple URL endpoint Doing this recursively is probably a bad idea since it will eventually blow the browser’s JavaScript stack, but it works OK for the demo.

这是真的吗?如果是这样,我们如何防止这种情况发生?

最佳答案

事实并非如此。

由于 getJSON 是异步的,下一个 fetchLatest() 调用将在前一个调用完成后一段时间开始。

如果你这样编写同步代码,它会卡住,然后引发堆栈溢出。

关于JavaScript 堆栈爆炸,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13617352/

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