标签: javascript jquery ajax performance api
我正在通过AJAX获取第三方API响应。
$.ajax({ url: "https://cors.io/?http://starlord.hackerearth.com/kickstarter", dataType: "JSON", }).done(function(response) { console.log(response) });
如您所见。响应中有101个数组元素。
是否有任何方法只能通过AJAX检索第一个数组项或一组特定的数组项以提高性能?