1 Star 2 Fork 0

Septillionss/微信天气小程序

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
app.js 721 Bytes
一键复制 编辑 原始数据 按行查看 历史
dengyi 提交于 2023-05-06 10:29 . Initial Commit
//app.js
// 全局 js 文件
const api = require('./libs/api');
App({
onLaunch: function () {
//加载天气数据
// this.loadWeatherData();
},
loadWeatherData: function () {
let citySelected = wx.getStorageSync('citySelected') || [];
if (citySelected.length === 0) {
citySelected.unshift("__location__");
wx.setStorageSync('citySelected', citySelected);
}
for (let idx in citySelected) {
let cityCode = citySelected[idx];
api.loadWeatherData(cityCode, function (cityCode, data) {
let weatherData = wx.getStorageSync('weatherData') || {};
weatherData[cityCode] = data;
wx.setStorageSync('weatherData', weatherData);
});
}
},
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
微信
1
https://gitee.com/septillionss/wechat-weather-mini-program.git
[email protected]:septillionss/wechat-weather-mini-program.git
septillionss
wechat-weather-mini-program
微信天气小程序
master

搜索帮助