1、获取位置的API
这里是获取到位置,并且打开地图定位到手机当前的经纬度坐标处
wx.getLocation({
type: 'gcj02', //返回可以用于wx.openLocation的经纬度
success: function(res) {
var latitude = res.latitude
var longitude = res.longitude
wx.openLocation({
latitude: latitude,
longitude: longitude,
scale: 28
})
}
})
2、发起网络请求的API
const requestTask = wx.request({
url: 'test.php', //仅为示例,并非真实的接口地址
data: {
x: '' ,
y: ''
},
header: {
'content-type': 'application/json'
},
success: function(res) {
console.log(res.data)
}
})
requestTask.abort() // 取消请求任务
http://api.map.baidu.com/geocoder/v2/?ak=百度API Key&location=32.12,120.5&output=json
4、根据城市名称获取天气信息的接口地址:
http://wthrcdn.etouch.cn/weather_mini?city=合肥
5、页面js方法调用,在微信API方法内调用另一个方法,要首先获取到当前的页面,如下图所示:
var page = this;
6、获取返回的Json值后,可以在页面中直接.出对应节点的值,如下图所示:
首先创建数组
7、使用模板API,定义与引用
创建模板
8、利用循环获取模板并展示