这3种加载JSON的方法中哪一种是大多数Web开发人员使用的最有效的方法?
var request = new XMLHttpRequest();
request.open('GET', '/my/url', true);
request.onload = function() {
if (this.status >= 200 && this.status < 400) {
// Success!
var data = JSON.parse(this.response);
} else {
// We reached our target server, but it returned an error
}
};
request.onerror = function() {
// There was a connection error of some sort
};
request.send();
OR
$.ajax({
url: url,
jsonp: "callback",
dataType: "jsonp",
success: function(data) {
}
});
OR
$getJSON("POST/GET","url");
答案 0 :(得分:0)
鉴于您已经定义了效率&#39;因为&#39; lag&#39;,它们都是相同的,因为它们都向服务器执行相同的HTTP请求并具有相同的连接速度。