最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

node.js - Infinite loop with asynchronous callback pattern in javascript - Stack Overflow

programmeradmin1浏览0评论

Suppose I want to send an asynchronous AJAX request to the server, and when it responds send another request and repeat forever:

function sendXHR(url, callback) {
    // Send XMLHttpRequest to server and call callback when response is received
}

function infinite() {
    sendXHR('url/path', infinite);
}

infinite();

I assume here we would run out of stack space pretty quickly, so how can I do this (without blocking)?

The pattern of passing callbacks around rather than using return is particularly popular with node.js. How do people create infinite loops? I don't believe most JS engines do any kind of tail call optimisation.

Suppose I want to send an asynchronous AJAX request to the server, and when it responds send another request and repeat forever:

function sendXHR(url, callback) {
    // Send XMLHttpRequest to server and call callback when response is received
}

function infinite() {
    sendXHR('url/path', infinite);
}

infinite();

I assume here we would run out of stack space pretty quickly, so how can I do this (without blocking)?

The pattern of passing callbacks around rather than using return is particularly popular with node.js. How do people create infinite loops? I don't believe most JS engines do any kind of tail call optimisation.

Share Improve this question asked Nov 17, 2012 at 4:39 FlashFlash 16.8k15 gold badges74 silver badges99 bronze badges 6
  • 2 That would not run out of stack space as when the callback is called the stack frames below it do not contain the stack of the previous infinite call. – Dan D. Commented Nov 17, 2012 at 4:49
  • @DanD. I tried it in Chrome by adding callback(); in sendXHR, and it reports Maximum call stack size exceeded after around 9500 iterations. Firefox also says too much recursion. – Flash Commented Nov 17, 2012 at 4:51
  • Well then maybe there's something interesting in the Send XMLHttpRequest to server and call callback when response is received part. – mu is too short Commented Nov 17, 2012 at 4:56
  • @muistooshort Sorry don't follow, am I missing something obvious? – Flash Commented Nov 17, 2012 at 4:58
  • I'm guessing your sendXHR function is using synchronous xhr then? Change this to asynchronous and execute the callback on the next tick. – Sean Kinsey Commented Nov 17, 2012 at 4:59
 |  Show 1 more ment

1 Answer 1

Reset to default 10

If your ajax call is asynchronous, you do not run out of stack space because sendXHR() returns immediately after the ajax request is sent. The callback is then called some time later when the ajax response arrives. There is no stack build up.


If your ajax call is synchronous and you want to allow other events and what not to happen in the javascript environment, then you could so something like this:

function sendXHR(url, callback) {
    // Send XMLHttpRequest to server and call callback when response is received
}

function infinite() {
    sendXHR('url/path');
    setTimeout(infinite, 1);
}

infinite();
发布评论

评论列表(0)

  1. 暂无评论