我必须使用批处理在 facebook 中上传多张照片现在正在使用此循环上传。它工作正常。但是如何用批处理来实现这个
for (var u=0; u < len; u++) {
var dat = obj[u].url;
FB.api('/'+ids+'/photos', 'post', {
message: 'rose',
status: 'success',
access_token: FB.getAuthResponse().accessToken ,
url: dat
}, function (response) {
// $('.ftab_prog').hide();
if (!response || response.error)
showError("Couldn't upload the photo. Please try again later.");
else
showInfo("Posted photo '<b>"+bn+"</b>' to facebook successfully!");
});
}