gpt4 book ai didi

javascript - 访问 JSON 数组中的对象时出现问题

转载 作者:行者123 更新时间:2023-12-03 05:01:22 26 4
gpt4 key购买 nike

我似乎不知道如何让这个代码片段工作。我正在尝试访问此 json 片段中的“名称”对象。任何帮助将不胜感激。

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js">
</script>
<script>
$(document).ready(function () {
$.getJSON('https://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20yahoo.finance.quotes%20where%20symbol%20in%20(%22AAPL%22)&format=json&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys&callback=', function(data) {
$('#demo').text(data[0].Name);
});
});
</script>
</head>
<body>

<p id="demo"></p>

</body>
</html>

最佳答案

使用这个:

$(document).ready(function () {
$.getJSON('https://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20yahoo.finance.quotes%20where%20symbol%20in%20(%22AAPL%22)&format=json&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys&callback=', function(data) {
$('#demo').text(data.query.results.quote.Name);
});
});

关于javascript - 访问 JSON 数组中的对象时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42211052/

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