我有两个问题。我的最终目标是向Instagram发出请求并按标签过滤图像。 Instagram一次不允许超过33张图像所以现在我在另一张图片中有一个ajax。第一个请求获取图像,然后检查是否有更多,如果还有更多我再发出请求。所以这是我的两个问题。
#1 - 我无法将这2个对象合并为1.我已经尝试了所有我能想到或在网上找到的东西。
var new_data = $.extend({}, data, data2);
和
$.extend(data, data2);
不起作用,它只给我一个对象
#2 - 我的逻辑有点有缺陷,因为这样只能让我最多获得66张图片(2张请求,每张33张图片)。我真正需要的是将ajax放在某种循环中。但我不知道该怎么做。
var userid = '#######';
var token = '############';
var url = 'https://api.instagram.com/v1/users/' + userid + '/media/recent/?access_token=' + token + '&count=33';
$.ajax({
type: 'GET',
dataType: 'jsonp',
cache: false,
url: url,
success: function(response){
var paging = response.pagination;
var data = response.data;
console.log(data);
if(paging.hasOwnProperty('next_url')){
url = paging.next_url;
$.ajax({
type: 'GET',
dataType: 'jsonp',
cache: false,
url: url,
success: function(response2){
var data2 = response2.data;
var new_data = $.extend({}, data, data2);
}
});
}else{
// No more images so create image gallery
}
},
error: function(){
// error stuff
}
});
以下是我从Instagram上回来的样本
答案 0 :(得分:2)
测试。有用。尝试
var imageData = [];
$(function() {
var url = 'https://api.instagram.com/v1/tags/smpspree/media/recent/?client_id=81e3d3f35c8a4438964001decaa5a31f&count=11';
getData(url, function() {
for (var i in imageData) {
console.log(imageData[i])
}
});
function getData(url, callback){
$.ajax({
type: 'GET',
dataType: 'jsonp',
cache: false,
url: url,
success: function(response){
console.log(response.data)
imageData = imageData.concat(response.data)
var paging = response.pagination;
if (paging.hasOwnProperty('next_url')) {
getData(paging.next_url, callback)
} else {
callback.call();
}
}
});
}
})
答案 1 :(得分:0)
如果你试图连接两个数组的元素,那么你错误地使用了$.extend
。
#1 为了累积数组的内容,请使用Array.prototype.concat
函数。
示例:
var new_data = data.concat(data2);
注意:$.extend
用于合并内容。见http://api.jquery.com/jquery.extend/。
#2 Instagram在其所有回复中都包含分页键。您可以在回调中使用它来触发另一个ajax请求。请参阅https://instagram.com/developer/endpoints/
中的分页注意:速率限制适用:经过身份验证的呼叫每个令牌5,000 /小时。见https://instagram.com/developer/limits/