API中的数据如何取出?
wx.getLocation({
type: ‘wgs84’,
success: function(res) {
wxlatitude = res.latitude
wxlongitude = res.longitude
}
})
console.log(wxlatitude)
调用了查找位置之后,我想在外面使用 wxlatitude和wxlongitude进行一些运算该怎么办?
用console查看,现在wxlatitude是未定义是怎么回事?