因为自己的项目有需求,所以今天分享给大家,话不多说上代码!
css部分<text>{{}}℃ {{weather.wea}}</text>
js部分
Page({data: {//获取当前天气weather: { 'wea_img': 'qing' },//实况天气},onLoad: function () {//获取当前天气api();
},//天气apigetapi: function () {var _this = this;// 获取IP地址wx.request({url: '/',data: {},method: 'POST',header: {'content-type': 'application/x-www-form-urlencoded'},success: function (res) {// console.log(res);// 根据IP获取天气数据_this.weathertoday(res.data.ip);}});}, // 天气api实况天气weathertoday: function (ip) {var _this = quest({url: '/?version=v6',data: {'ip': ip},method: 'GET',header: {'content-type': 'application/x-www-form-urlencoded'},success: function (res) {_this.setData({weather: res.data});console.log(_this.data.weather)}});},)},
好!大功告成,此时我们会发现后台返回的数据一大堆,我们选择需要的渲染页面就行了。溜了,溜了,
本文发布于:2024-01-28 01:30:50,感谢您对本站的认可!
本文链接:https://www.4u4v.net/it/17063766583857.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
留言与评论(共有 0 条评论) |