gpt4 book ai didi

javascript - 从 html 文件上的 github API 返回结果 json

转载 作者:行者123 更新时间:2023-11-30 11:10:49 27 4
gpt4 key购买 nike

我有这个 html 代码:

<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
</head>
<body>
<div class="container">
<div id="result" style="color:red"></div>
</div>
</body>
<script>

$(document).ready(function(){

$.ajax({
url: "https://api.github.com/users/Microsoft",
type: 'GET',
dataType: 'json',
success: function(res) {
$('#result').html(res)
}
});

})

</script>

每当我尝试在浏览器上查看结果时,它只会显示一个空白页面。

我只需要返回 API 结果并在 html 上显示即可。

有什么想法吗?

最佳答案

AJAX 回调使 res 成为一个对象。当您使用 .html() 时,参数必须是一个字符串。如果要查看页面上表示的对象,请使用 JSON.stringify():

$.ajax({
url: "https://api.github.com/users/Microsoft",
type: 'GET',
dataType: 'json',
success: function(res) {
$('#result').html(JSON.stringify(res))
}
});

关于javascript - 从 html 文件上的 github API 返回结果 json,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53805329/

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