js错误Uncaught RangeError: Maximum call stack size exceeded

首先调用get_content()方法,然后在get_content方法中调用handle_content()方法,然后在handle_content方法中调用post_content()方法,最后在post_content方法中再调用get_content()方法,不知到该怎样避免超出内存呢?

function get_content()
{
    $.ajax({
        url:'/air_ajax.php',
        type:'get',
        dataType:'json',
        timeout:1000,

        async:false,
        success:function(json)
        {
            if(json.status)
            {
                handle_content(json.article);
            }
            else
            {
                console.log('get article none');
            }
        }
    });
}

function handle_content(article)
{
    if(!article){
        console.log('article is illegal');
        console.log(article);
        return;
    }
    var $box=$('<div class="wrap">'+article.content+'</div>');
    var $children=$box.find('#content').children();
    if($children.length>0)
    {
        $children.each(function()
        {
            //console.log('hello');
            var tag=this.nodeName.toLowerCase();

             if(this.nodeType==1 && tag!=='div' && tag!=='p')
             {
             var html=$(this).html();
             //console.log(this);
             $(this).replaceWith('<p>'+html+'</p>');
             }

        });
    }


    $box.find('img').each(function()
    {
        $(this).attr('src','/img/load_common.gif');
    });
    if($box.find('#content').length>0)
    {
        var html=$box.find('#content').html();
    }
    else
    {
        var html=$box.html();
    }
    //var $html=$('<div>'+html+'</div>');
    ue.setContent(html);
    ue.execCommand('selectall');
    ue.execCommand('removeformat');
    var content=ue.getContent();
    var $html=$('<div>'+content+'</div>');
    $html.find('img').each(function()
    {
        var src=$(this).attr('src');
        var datasrc=$(this).attr('data-src');
        $(this).removeAttributes();
        $(this).attr('src',src).attr('data-src',datasrc);
    });
    $html.find('a').remove();
    var html=$html.html();
    data={id:article.id,content:html};
    
    post_content(data);
}
**var count;**
function post_content(data)
{
    **count++;**
    $.ajax({
        url:'/air_ajax.php',
        type:'post',
        dataType:'json',
        timeout:1000,
        async:false,
        data:data,
        success:function(json)
        {
            if(json.status)
            {
                console.log('process success '+id);
                **if(count>400)
                {
                    setTimeout(get_content,5000);
                    count=0;
                }
                else
                {
                    get_content();
                }**
                

            }
            else
            {
                console.log(json.errorInfo);
                status=false;
            }
        }
    });
}
阅读 6.5k
2 个回答

这是无限递归呐。。没有终止条件肯定会爆栈啊

建议把 get_content()改成setTimeout(get_content, 0),使之成为异步调用,自然就瓦解了递归栈

题主是想将get的数据处理后post,递归唯一条件是json.status 然而递归运行不能中止导致了超出stack. post_content()内部调用的是get_content() 两者没有数据上的联系因此不必用递归的方式直接循环就可以做到

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题