我有一个 for 循环,它将一系列 facebook id 和帖子发布到他们的墙上,但由于某种原因,它发布了正确的次数......但都发布到了最后一个 id 的墙上。
如果我在循环中提醒 id,它们是不同的,这就是为什么我对这种行为感到困惑,所以我想知道是否有人能看到任何错误?
JS
for(var z=0; z<friendList.length; z++) {
friendID = friendList[z];
alert(friendID); // this is unique!
FB.api('/' + friendID + '/feed', 'post', options, function(response)
{
// post stuff
}
}