gpt4 book ai didi

jquery - openweather API .getJSON 请求返回未定义

转载 作者:行者123 更新时间:2023-12-01 03:33:59 25 4
gpt4 key购买 nike

我读过很多类似的主题,但它们没有帮助..

尝试访问此 JSON 对象..

{

"coord": {
"lon": -83.9,
"lat": 33.99
},
"weather": [
{
"id": 701,
"main": "Mist",
"description": "mist",
"icon": "50n"......

用这个脚本。我已经链接到了 jQuery CDN,确保我的 api key 是正确的,只是在这里不知所措。

<html>

<script
src="https://code.jquery.com/jquery-2.2.4.min.js"
integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44="
crossorigin="anonymous"></script>

<script>$(document).ready(function(){
var api = "http://api.openweathermap.org/data/2.5/weather?lat=33.9654688&lon=-83.9138728&appid=(This is where the apikey goes)";

$.getJSON(api, function(data){
console.log(api.weather.main);
});
});
</script>
</html>

非常感谢任何帮助,这是我第一次进行 api 调用,所以现在对我来说这是一个很大的障碍。

最佳答案

也许你应该像 console.log(data); 那样读取 data

关于jquery - openweather API .getJSON 请求返回未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41008123/

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