文 / 秦未
大家好!好久没写文章了,我昨天晚上捣腾JS实现天气的方法,由于本人JS并没有学好,遇到一个问题,始终无法解决,学前端的童鞋如果懂一点相关的知识,可以帮忙解决吗?问题在文章末尾。
最后如标题所示,我还是用Python来得到数据算了,由于自己用阿里云的服务器,所以就在阿里云找了一个免费的天气API接口,0元一年一万次调用,虽然不够用,但是应该能凑合十多天了。
20170615101818.png购买地址:https://market.aliyun.com/products/57126001/cmapi014302.html#sku=yuncode830200000
它提供的方法是Python2的调用方法:
import urllib, urllib2, sys
host = 'http://jisutqybmf.market.alicloudapi.com'
path = '/weather/query'
method = 'GET'
appcode = '你自己的AppCode'
querys = 'city=%E5%AE%89%E9%A1%BA&citycode=citycode&cityid=cityid&ip=ip&location=location'
bodys = {}
url = host + path + '?' + querys
request = urllib2.Request(url)
request.add_header('Authorization', 'APPCODE ' + appcode)
response = urllib2.urlopen(request)
content = response.read()
if (content):
print(content)
在Python3中urllib与urllib2已经合并成urllib,但是我并没有使用这个模块,而是使用了Requests模块,相信很多学爬虫的同学一定听说并使用过它了,没听说过的同学也不用担心,因为它足够简单,只要阅读一下官方文档即可快速使用它。
附上中文文档:快速上手 — Requests 2.10.0 文档
使用它自然要先安装了,安装命令(管理员权限):
pip install requests
下面就是修改完毕的代码(AppCode位置:控制台/云市场/API):
import requests
def get_weather(city):
url = 'http://jisutqybmf.market.alicloudapi.com/weather/query'
appcode = '你自己的AppCode '
headers = {'Authorization': 'APPCODE ' + appcode}
try:
content = requests.get(url=url, params={'city': city}, headers=headers)
except requests.exceptions.Timeout:
return 'TimeoutError'
except requests.exceptions.ConnectionError:
return 'ConnectionError'
except requests.exceptions.HTTPError:
return 'HTTPError'
except requests.exceptions.TooManyRedirects:
return 'TooManyRedirects'
except:
return 'OtherError'
else:
if content.status_code == 200 and content.json():
return content.json()
else:
return ''
ErrorList = ['TimeoutError', 'ConnectionError', 'HTTPError', 'TooManyRedirects', 'OtherError']
使用方法:
get_weather('城市名称')
得到的数据类型为字典,取数据方法简单示例如下:
demo = get_weather('长沙')
if demo in ErrorList:
print(demo)
else:
test = demo.get("result")
# 获取城市
city = test.get('city')
# 获取天气
weather = test.get('weather')
# 获取气温
temp = test.get('temp')
print(city, weather, temp)
天气预报查询接口返回参数:
天气预报查询接口返回参数
教程结束!
在使用这个API后,我又购买了另外一个接口,发现使用方法差别不大,所以这篇教程有点通用教程的意思。
下面是问题:
我调用了一个方法,在HTML加载完毕后执行div中出现字符串:
$('.weather-detailed').leoweather({format: '{天气}'
$('.weather-detailed').text(C);
但是我直接
var C = $('.weather-detailed').leoweather({
format: '{天气}'
});
或者
var D = $('.weather-detailed').leoweather({format: '{天气}'
$('.weather-detailed').text(D);
var C = $('.weather-detailed').text()
都只能得到一个对象,我搜索了很久,始终无法解决,我该如何得到执行后的它呢?
网友评论