我对使用带有$.ajax()的async:false选项感到困惑.根据$.ajax()文档:
As of jQuery 1.8,the use of async: false with jqXHR ($.Deferred) is deprecated;
you must use the success/error/complete callback options instead of the corresponding
methods of the jqXHR object such as jqXHR.done() or the deprecated jqXHR.success().
我不知道jqXHR($.Deferred)是什么意思.是因为任何原因使用async:false折旧,还是jqXHR($.Deferred)某种特殊用例?
我问,因为我无法异步地进行$.ajax()调用.这是jQuery 1.8.2:
var ret = {}; $.ajax({ async: false,method: 'GET',contentType: 'application/json',dataType: 'jsonp',url: '/couchDBserver',error: myerr,success: function(data) { var rows = data.rows; //something that takes a long time for(var row in rows) { ret[rows[row].key] = rows[row].value; } console.log('tick'); } }); console.log('tock'); console.log(JSON.stringify(ret))
我的控制台输出是:
tock
{}
tick
我做错了什么,或者我做错了什么?
您尝试同时使用JSONP techinque和async:false.这不可能. JSONP实际上是创建一个脚本元素并将其附加到文档的某个位置,因此它不是XHR,jQuery无法在任何地方传递同步标志.由于您从同一来源获取数据,只需将dataType更改为
原文链接:https://www.f2er.com/ajax/160147.htmldataType: 'json',
但是,每个人都可以告诉您,同步请求并不好,他们会挂起您的浏览器.您应该仅在少数情况下使用它们.