在这个函数中,我从专辑列表中检索每张专辑:
options.albumsList.forEach(function (id) {
var promise = $resource('https://api.imgur.com/3/album/:album',{album:id},{
get:{
headers:{'Authorization':'Client-ID '+ options.apiKey},
method:'GET'
}
}).get().$then(
function(value){
albums.push(value);
},
function(err){
console.log(err);
}
);
prom.push(promise);
});
$q.all(prom).then(function () {
console.log(albums);
});
你会注意到的是:album
取决于每个id
albumList
这意味着如果我想将资源调用分配给可重用对象,例如:
var call = $resource('https://api.imgur.com/3/album/:album',{album:id},{
get:{
headers:{'Authorization':'Client-ID '+ options.apiKey},
method:'GET'
}
});
然后用:
options.albumsList.forEach(function (album) {
//Can no longer pass album id to each call
var promise = call.get().$then(
function(value){
albums.push(value);
},
function(err){
console.log(err);
}
);
prom.push(promise);
});
$q.all(prom).then(function () {
console.log(albums);
});
我无法再将专辑 ID 传递给每个人:album
有没有解决的办法?