You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

74 lines
2.2 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

var bmap = require('../../utils/bmap-wx.min.js');
var timestamp = Date.parse(new Date());
var hover = new Date(timestamp).getHours();
Page({
data: {
weatherData: '',
weather_data: [],
weatherUrl : ''
},
onLoad: function() {
var that = this;
var BMap = new bmap.BMapWX({
ak: 'zuwiVmIUj822mmW6psamM888QLz8Q5wF'
});
var fail = function(data) {
console.log('fail!!!!')
};
var success = function(data) {
var weatherData = data.currentWeather[0];
var weather_data = data.originalData.results[0].weather_data;
weatherData = '城市:' + weatherData.currentCity + '\n' + 'PM2.5' + weatherData.pm25 + '\n' +'日期:' + weatherData.date + '\n' + '温度:' + weatherData.temperature + '\n' +'天气:' + weatherData.weatherDesc + '\n' +'风力:' + weatherData.wind + '\n';
that.setData({
weatherData: weatherData,
weather_data: weather_data
});
if (hover > 6 && hover < 18) {
console.log(that.data.weather_data[0].dayPictureUrl);
that.setData({
weatherUrl: that.data.weather_data[0].dayPictureUrl
})
} else {
that.setData({
weatherUrl: that.data.weather_data[0].nightPictureUrl
})
}
//当data数据中的weatherUrl成功的获取值后再缓存
wx.setStorage({
key: 'weatherUrl',
data: that.weatherUrl,
})
wx.setStorage({
key: 'weather_data',
data: weather_data,
})
}
BMap.weather({
fail: fail,
success: success
});
},
onReady: function(){
},
onPullDownRefresh(){
wx.setNavigationBarTitle({
title: '当地天气'
});
wx.showNavigationBarLoading(); //在标题栏中显示加载图标
setTimeout(function () {
wx.stopPullDownRefresh(); //停止加载
wx.hideNavigationBarLoading(); //隐藏加载icon
}, 2000)
}
})