首先调用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;
}
}
});
}
这是无限递归呐。。没有终止条件肯定会爆栈啊
建议把 get_content()改成setTimeout(get_content, 0),使之成为异步调用,自然就瓦解了递归栈