1. 程式人生 > >angular框架下的跨域問題(獲取天氣數據)

angular框架下的跨域問題(獲取天氣數據)

cat blog 蘇州 scrip location func amp set 服務

1、新浪天氣:http://php.weather.sina.com.cn/iframe/index/w_cl.php?code=js&day=0&city=&dfc=1&charset=utf-8

2、中國天氣網:1)http://www.weather.com.cn/data/sk/101010100.html  2)http://www.weather.com.cn/data/cityinfo/101010100.html

3、中國萬年歷:1)http://wthrcdn.etouch.cn/weather_mini?city=北京  2)http://wthrcdn.etouch.cn/weather_mini?citykey=101010100

4、和風天氣(天氣服務1天免費試用,城市查詢服務免費,不推薦使用)

var key=‘‘;//自行輸入獲取的key
$.getJSON(‘https://free-api.heweather.com/v5/now?city=蘇州&key=‘+key,function (data) { })

5、心知天氣

官方鏈接:https://github.com/seniverse/seniverse-api-demos/blob/master/javascript/jsonp.html

參考鏈接:http://www.jianshu.com/p/fa6e5eb6ba86

6、百度API

          var
type=‘jsonp‘; var ak=‘‘;//自行輸入百度獲取的ak var url=‘http://api.map.baidu.com/location/ip?callback=JSON_CALLBACK‘; //通過IP獲取當前地理位置 $http({ method: type, // 支持jsonp, url: url, params: { // 請求的參數
ak: ak }, }).success(function (locationData) { })

angular框架下的跨域問題(獲取天氣數據)