c语言写天气预报程序,微信小程序实现天气预报功能
獲取應用實例
var app = getApp()
Page({
data: {
//加載狀態
loadingHidden: false,//當前溫度
currentTemperature: '',//夜間溫度
nightAirTemperature: '',//白天溫度
dayAirTemperature: '',//當前天氣
weather: '',//污染指數
aqi: '',//污染程度
quality: '',//風力
windPower: '',//風向
windDirection: '',//因為數據返回不是數組所以要自己封裝一個數組
list: [],height: 0,},onLoad: function () {
console.log('onLoad')
var that = this
//100%好像不好使 可以獲取設備高度
wx.getSystemInfo({
success: function (res) {
that.data.height = res.windowHeight;
}
})
wx.getLocation({
success: function (res) {
//通過經緯度請求數據
wx.request({
//這個網站有免費API趕緊收藏
url: 'http://route.showapi.com/9-5',data: {
showapi_appid: '11697',showapi_sign: '6c0c15c5ec61454dac5288cea2d32881',//
from: '5',lng: res.longitude,lat: res.latitude,//獲取一周情況 0是不獲取
needMoreDay: '1',needIndex: '1'
},success: function (res) {
console.log(res)
console.log(res.data.showapi_res_body.now.api)
that.setData({
//改變加載狀態
loadingHidden: true,currentTemperature: res.data.showapi_res_body.now.temperature,nightAirTemperature: res.data.showapi_res_body.f1.night_air_temperature,dayAirTemperature: res.data.showapi_res_body.f1.day_air_temperature,weather: res.data.showapi_res_body.now.weather,aqi: res.data.showapi_res_body.now.aqi,quality: res.data.showapi_res_body.now.aqiDetail.quality,windPower: res.data.showapi_res_body.now.wind_power,windDirection: res.data.showapi_res_body.now.wind_direction,//拼接數組
list: [
{
'day_weather_pic': res.data.showapi_res_body.f1.day_weather_pic,'weekday': res.data.showapi_res_body.f1.weekday,'day_air_temperature': res.data.showapi_res_body.f1.day_air_temperature,'night_air_temperature': res.data.showapi_res_body.f1.night_air_temperature
},{
'day_weather_pic': res.data.showapi_res_body.f2.day_weather_pic,'weekday': res.data.showapi_res_body.f2.weekday,'day_air_temperature': res.data.showapi_res_body.f2.day_air_temperature,'night_air_temperature': res.data.showapi_res_body.f2.night_air_temperature
},{
'day_weather_pic': res.data.showapi_res_body.f3.day_weather_pic,'weekday': res.data.showapi_res_body.f3.weekday,'day_air_temperature': res.data.showapi_res_body.f3.day_air_temperature,'night_air_temperature': res.data.showapi_res_body.f3.night_air_temperature
},{
'day_weather_pic': res.data.showapi_res_body.f4.day_weather_pic,'weekday': res.data.showapi_res_body.f4.weekday,'day_air_temperature': res.data.showapi_res_body.f4.day_air_temperature,'night_air_temperature': res.data.showapi_res_body.f4.night_air_temperature
},{
'day_weather_pic': res.data.showapi_res_body.f5.day_weather_pic,'weekday': res.data.showapi_res_body.f5.weekday,'day_air_temperature': res.data.showapi_res_body.f5.day_air_temperature,'night_air_temperature': res.data.showapi_res_body.f5.night_air_temperature
},{
'day_weather_pic': res.data.showapi_res_body.f6.day_weather_pic,'weekday': res.data.showapi_res_body.f6.weekday,'day_air_temperature': res.data.showapi_res_body.f6.day_air_temperature,'night_air_temperature': res.data.showapi_res_body.f6.night_air_temperature
},{
'day_weather_pic': res.data.showapi_res_body.f7.day_weather_pic,'weekday': res.data.showapi_res_body.f7.weekday,'day_air_temperature': res.data.showapi_res_body.f7.day_air_temperature,'night_air_temperature': res.data.showapi_res_body.f7.night_air_temperature
}
]
})
}
})
}
})
}
})
總結
以上是生活随笔為你收集整理的c语言写天气预报程序,微信小程序实现天气预报功能的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: char[] 转换为LPWSTR
- 下一篇: CString与LPCWSTR、LPST