作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用一个简单的 Web API 来获取伦敦城市的天气详细信息。但是,我没有得到所需的响应,而是收到 401 错误。我做错了什么吗?
HTML
<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>
$(document).ready(function(){
$('button').click(function(){
$.ajax({
type: "get",
url: "http://api.openweathermap.org/data/2.5/weather?q=London",
dataType: "json",
contentType: 'application/json',
success: function(data) {
//What to do on success
}
});
});
});
</script>
</head>
<body>
<button>Click Me</button>
</body>
</html>
使用以下 API
http://openweathermap.org/current
错误
最佳答案
您需要将键作为查询字符串添加到天气 api 的 URL 中。
您可以添加一个小函数来执行此操作:
var url = 'http://api.openweathermap.org/data/2.5/forecast/city';
var keys = {
id: 524901,
APPID: 12345 // Put your key here
};
function makeUrl (url, queryStringObject) {
var query = [];
// Loops through each key
for(var key in queryStringObject){
query.push(encodeURIComponent(key) + '=' +
encodeURIComponent(queryStringObject[key]));
}
// Returns the url with the keys appended
return url + (query.length ? '?' + query.join('&') : '');
}
这将返回 API 所需格式的 key :
http://api.openweathermap.org/data/2.5/forecast/city?id=524901&APPID=12345
然后在调用api时,可以使用函数调用:
$(document).ready(function(){
$('button').click(function(){
$.ajax({
type: "get",
url: makeUrl(url, keys), // Gets the constructed url
dataType: "json",
contentType: 'application/json',
success: function(data) {
//What to do on success
}
});
});
});
关于jquery - 天气 API(RESTful)给出错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38322949/
我有一个经典的 ASP 页面 (VBscript),它在服务器端生成 XML,然后 Response.Writes。该页面根本没有客户端。 但是我需要将其转换为 JSON。由于我找不到有效的 ASP
我想从客户端应用程序的 HDFS 中读取特定的 SequenceFile。我可以使用 SequenceFile.Reader 来做到这一点,它工作正常。但是是否也可以通过分析抛出的 IOExcepti
我是一名优秀的程序员,十分优秀!