有没有办法等待jQuery的get
JSON方法?
我想解析数据,收到此函数,如果包含特定字符串,则返回false / true.但由于异步数据处理,这似乎并不那么容易.这是一段代码:
contained = false; $.getJSON(URL,function ( data ) { $.each( data,function( i,item ) { if ( item.Info.code == code ) contained = true; }); });
解决方法
您可以尝试执行同步请求,如下所示:
$.ajax({ type: "GET",url: "www.foo.com",data: data async: false,dataType: "json" });