gpt4 book ai didi

javascript - HTML 文件中的 jQuery Ajax Json 解析不适​​用于 Google Cloud Service

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

我第一次使用 jQuery/JavaScript 和 ajax,我正在尝试使用地下天气 API 在谷歌云上托管的网页上显示一些天气信息。

我一直在阅读地下天气代码示例,我正在尝试使用它,这就是为什么代码看起来如此熟悉,但我只是想让它工作,这样我就可以继续前进。我还查看了其他堆栈溢出,其中提出了类似的代码问题,但我仍然一无所获。我对裁员表示歉意,但我不确定为什么它不起作用。

一切似乎都有意义,但是当 HTML 应该在页面加载时“发出警报”时,我什么也得不到。即使我做了一些愚蠢的事情,我也非常感谢一些意见,只是想让这个 block 工作起来,以便继续前进。

下面是我的 HTML 文件,它是 JavaScript 和 HTML 的混合体。

<!DOCTYPE html>
<html>
<head>
<title>Hello, The Cloud!</title>
<link rel="stylesheet" type="text/css" href="/static/style.css">
</head>

<body>
<h1>Hello, The Cloud!</h1>
<p> Lets Check the Weather! </p>
</body>

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
<script type="text/javascript">

jQuery(document).ready(function($) {
$.ajax({
url : "http://api.wunderground.com/api/47acb7d74302f585/geolookup/conditions/q/IA/Cedar_Rapids.json",
dataType : "jsonp",
success : function(parsed_json) {
var location = parsed_json['location']['city'];
var temp_f = parsed_json['current_observation']['temp_f'];
alert("Current temperature in " + location + " is: " + temp_f);
}
});
});

</script>

</html>

我的简单 CSS 文件如下所示。

h1 {
color: #000000;
text-align: center;
font-size: 60px;
text-decoration: underline;

}

body {
background-color: LavenderBlush;
font-size: 20px;
}

div {
background-color: lightgrey;
color: #FF0000;
id: "clockbox";
font-size: 20px;
font-family: "Times New Roman", Times, Serif;

width: 420px;
padding: 10px;
border: 5px solid gray;
margin: 0;
}

.alert {
padding: 20px;
background-color: #f44336; /* Red */
color: white;
margin-bottom: 15px;
}

感谢任何反馈!

谢谢

最佳答案

感谢 @GAEfan 和 yuriy636 的一些很好的建议,我发现 Google Cloud 不能很好地处理 HTTP 请求,因此只需将 URL 中的 HTTP 更改为 HTTPS,如代码所示下面。

<!DOCTYPE html>
<html>
<head>

<title>Hello, The Cloud!</title>
<link rel="stylesheet" type="text/css" href="/static/style.css">

</head>

<body>

<h1>Hello, The Cloud!</h1>
<p> Lets Check the Weather! </p>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
<script type="text/javascript">

jQuery(document).ready(function($) {
$.ajax({
url : "https://api.wunderground.com/api/47acb7d74302f585/geolookup/conditions/q/IA/Cedar_Rapids.json",
success : function(parsed_json) {
console.log(parsed_json);
var location = parsed_json['location']['city'];
var temp_f = parsed_json['current_observation']['temp_f'];
alert("Current temperature in " + location + " is: " + temp_f);
}
});
});

</script>

</body>

</html>

以下是有关 Google Cloud 和 HTTP/HTTPS 的更多信息的链接:https://cloud.google.com/compute/docs/load-balancing/http/

感谢大家的帮助!

关于javascript - HTML 文件中的 jQuery Ajax Json 解析不适​​用于 Google Cloud Service,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39735851/

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