gpt4 book ai didi

javascript - getJSON 警报不返回任何内容 - 数据问题?

转载 作者:行者123 更新时间:2023-11-29 16:08:59 25 4
gpt4 key购买 nike

我在读取这些数据时遇到问题:

看起来像这样:

{
"ok": true,
"messages": [
{
"text": "moo",
"username": "bot",
"type": "message",
"subtype": "bot_message",
"ts": "1448226157.000008"
},
{
"text": "boo",
"username": "bot",
"type": "message",
"subtype": "bot_message",
"ts": "1448225998.000007"
}
],
"has_more": true
}

代码如下:

$.getJSON("https://slack.com/api/channels.history?token=xxxx&channel=C0E&pretty=1", function(result){
$.each(result, function(i, field){
$("div").append(field + " ");
});
});

我得到的是

[object object][object object]

如何让数据正确显示?

最佳答案

假设:

  1. 这是完整的 JSON
  2. 您想遍历消息

你的循环应该更像是:

$.each( result.messages,
function( i, msg ) {
$("div").append( msg.username + ": " + msg.text + " " );
}
);

(或您希望显示的任何字段)

关于javascript - getJSON 警报不返回任何内容 - 数据问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33882264/

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