C/C++教程

uni.getLocation()不能使用this的原因是。。。

本文主要是介绍uni.getLocation()不能使用this的原因是。。。,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

想获取位置并赋值给变量

uni.getLocation({
                            type: 'wgs84',
                            success: (res)=> {
                                console.log('当前位置的经度:' + res.longitude);
                                console.log('当前位置的纬度:' + res.latitude);
                                this.longitude = res.longitude;
                                this.latitude = res.latitude;
                            }
                        });

 

报错:VM487 WAService.js:2 TypeError: Cannot set property 'longitude' of undefined

原因:uni.getLocation 是异步函数 不应该在uni.getLocation中 用this 操作data里的函数,应该重新映射一个this变量

解决方法:

#在外面把this赋值给变量that,再在函数里面使用that
var that =this
uni.getLocation({
                            type: 'wgs84',
                            success: (res)=> {
                                console.log('当前位置的经度:' + res.longitude);
                                console.log('当前位置的纬度:' + res.latitude);
                                that .longitude = res.longitude;
                                that .latitude = res.latitude;
                            }
                        });

 

这篇关于uni.getLocation()不能使用this的原因是。。。的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!