我有这个功能可以帮助我检索我的朋友ID,但我似乎无法让它找回一个朋友的id。我需要制作一个循环来获取所有朋友ID。
你能帮我解决一下这段代码吗?
function(response) {
console.log(response);
var testdiv = document.getElementById("test");
testdiv.innerHTML = (
response[0].uid2
);
}
答案 0 :(得分:0)
只需迭代response
:
for (i=0; i<=response.length; i++) {
var uid2 = response[i].uid2;
// do what you need to with uid2
}
并演示如何使用它
function(response) {
console.log(response);
var testdiv = document.getElementById("test");
var newhtml = "";
for (i=0; i<=response.length; i++) {
newhtml += response[i].uid2;
}
testdiv.innerHTML = newhtml;
}