-1

我有一个函数可以返回我在 facebook 上朋友的姓名和 ID。我需要帮助将它们存储在数组中以便以后访问它们。有任何想法吗?

//using JQuery 
function getFriends() {
    alert(" ok lets try and retrieve some friends ");
    FB.api('/me/friends', function (response) {
        if (response.data) {
            alert("waiting for the buddies list");
            $.each(response.data, function (index, friend) {
                console.log(friend.name + ' has id:' + friend.id);
            });
        } else {
            alert("Unable to retrieve friends' list");
        }
    });
}
4

1 回答 1

2

替换这一行:

console.log(friend.name + ' has id:' + friend.id);

像这样:

friends.push({'name' : friend.name, 'id' : friend.id});

虽然看起来你基本上只是在运行响应数据并重建它,也许从每个朋友那里扔掉一些额外的数据?

于 2012-07-05T13:55:37.743 回答