我正在进行FB.API调用以获得用户的喜欢,我设法通过console.log(喜欢)在JavaScript控制台中看到喜欢的数组输出。< / p>
但是,我需要一种方法来存储这个喜欢的输出,以便稍后在算法中再次使用它,我尝试将输出插入变量,但它不起作用,这里是我的代码尝试:
var x;
function customFunction(likes) {
console.log(likes) // Works, In the console I see Array[20], when each array member contains page name, categories etc...
x=likes; // doesn't work
document.write(x); //doesn't work
}
function get_user_likes(){
FB.api('/me/likes',function(response){
customFunction(response['data']);
}
);
};
如何存储输出?