gpt4 book ai didi

javascript - getJSON 响应处理

转载 作者:行者123 更新时间:2023-12-02 13:56:40 24 4
gpt4 key购买 nike

这是我处理 getJSON 响应的 Javascript 代码:

$.getJSON(url, {
userID:userID,
unique:unique
}, function(response) {
alert(JSON.stringify(response));
if(response.connection_status == true) {
alert(response.connected_friends[0].id);
}
});

第一个警报确实触发并给了我这个:

{ "connection_status":true,
"hasResults":true,
"connected_friends":{
"id":"1055",
"name":"My Name"
}
}

为什么我的第二个提醒没有显示?

我在这里缺少什么?

最佳答案

你应该这样做

response.connected_friends["id"]

response.connected_friends.id

因为它是一个对象而不是数组

关于javascript - getJSON 响应处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40652894/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com