更新记录
1.0.1(2020-11-04)
修复一些错误
1.0.0(2020-11-04)
首发
平台兼容性
阿里云 | 腾讯云 | 支付宝云 |
---|---|---|
√ | √ | × |
云函数类插件通用教程
使用云函数类插件的前提是:使用HBuilderX 2.9+
使用说明
uniCloud.callFunction({
name: 'getWeather',
data: {
location: '107.50225,31.20948'
},
success(res) {
console.log(res)
}
})
返回参数
{
"code": 200,
"weather": {
"obsTime": "2020-11-04T16:40+08:00",
"temp": "5",
"feelsLike": "1",
"icon": "150",
"text": "晴",
"wind360": "243",
"windDir": "西南风",
"windScale": "2",
"windSpeed": "8",
"humidity": "22",
"precip": "0.0",
"pressure": "988",
"vis": "14",
"cloud": "0",
"dew": "-18"
},
"warning": [{
"id": "22000041600000_20201104151655",
"sender": "吉林省森林草原防灭火指挥部办公室、吉林省气象局",
"pubTime": "2020-11-04T15:16+08:00",
"title": "吉林省森林草原防灭火指挥部办公室和吉林省气象局继续联合发布森林火险黄色预警信号[III级/较重]",
"status": "active",
"level": "黄色",
"type": "11B25",
"typeName": "森林火险",
"text": "吉林省森林草原防灭火指挥部办公室和吉林省气象局11月4日15时15分继续联合发布森林火险黄色预警信号:预计未来24小时,全省火险气象等级为3级,注意做好相关预防工作。",
"related": ""
}, {
"id": "22010041600000_20201104150447",
"sender": "长春市森林防火指挥部和长春市气象局",
"pubTime": "2020-11-04T14:56+08:00",
"title": "长春市森林防火指挥部和长春市气象局发布森林火险气象黄色预警[III级/较重]",
"status": "active",
"level": "黄色",
"type": "11B25",
"typeName": "森林火险",
"text": "长春市森林防火指挥部与长春市气象局2020年11月04日14时56分联合发布森林火险气象风险黄色预警信号:预计未来24小时内,我市空气干燥,火险气象等级为3级,请注意做好防火工作。",
"related": ""
}]
}