<template>
<view>
<text>{{text}}</text>
<button @click="clickButton">获取位置</button>
</view>
</template>
<script>
export default {
data() {
return {
text:'3333',
};
},
methods:{
clickButton() {
var ko=uni.getLocation({
type: 'wgs84',
success: function (res) {
this.text="123";
console.log('当前位置的经度:' + res.longitude);
console.log('当前位置的纬度:' + res.latitude);
var kk= res.longitude +','+ res.latitude;
this.text=kk;
console.log(kk);
return kk;
},
});
console.log(ko);
},
}
}
</script>
<style lang="scss">
</style>
m***@qq.com (作者)
感谢,复制进去页面,内部浏览器调试,按了没反应啊。
2023-09-21 14:03
喜欢技术的前端
回复 m***@qq.com: 你要是写app就在手机上调试
2023-09-21 21:49