我正在使用Angular 2进行反向地理编码,它运行正常,但我无法使用服务(setter和getter)设置值(即城市名称)
import { ShareService } from './services/ShareService';
class ConferenceApp {
constructor(public shareService: ShareService){
this.getGeoLocation();
}
public getGeoLocation(){
if (navigator.geolocation) {
var options = {
enableHighAccuracy: true
};
navigator.geolocation.getCurrentPosition(position=> {
this.lat = position.coords.latitude;
this.long = position.coords.longitude;
let geocoder = new google.maps.Geocoder();
let latlng = new google.maps.LatLng(this.lat, this.long);
let request = {
latLng: latlng
};
geocoder.geocode(request, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
if (results[0] != null) {
let city = results[0].address_components[results[0].address_components.length-4].short_name;
this.shareService.setLocationDetails(city);
} else {
alert("No address available");
}
}
});
}, error => {
console.log(error);
}, options);
}
}
}
如果我尝试使用服务设置, 的 this.shareService.setLocationDetails(市); 我收到错误说,
app.ts:303 Uncaught TypeError: Cannot read property 'shareService' of undefined
服务:
locationObj: any;
setLocationDetails(locationObj){
this.locationObj = locationObj;
}
getLocationDetails(){
return this.locationObj;
}
答案 0 :(得分:5)
我认为一切都很好。但是,我建议你使用 arrowfunction ()=>
,如下所示,
// Removed function keyword and added arrow function
geocoder.geocode(request, (results, status) => {
if (status == google.maps.GeocoderStatus.OK) {
if (results[0] != null) {
let city = results[0].address_components[results[0]
.address_components.length-4].short_name;
this.shareService.setLocationDetails(city);
} else {
alert("No address available");
}
}
});
答案 1 :(得分:0)
geocoder.geocode(请求,(结果,状态)=> {....} 在' 结果'上显示错误说 {' latLng':latlng} 与结果类型不对应。
解决方案:
var geocoder = new google.maps.Geocoder();
var latlng = new google.maps.LatLng(this.eventLat, this.eventLng);
let request = {
location: latlng
};
geocoder.geocode(request, function (results, status) {
if (status == google.maps.GeocoderStatus.OK) {
if (results[1]) {
console.log(results[1].formatted_address);
} else {
console.log('Location not found');
}
} else {
console.log('Geocoder failed due to: ' + status);
}
});
答案 2 :(得分:0)
我没有足够的声誉来评论:-(,所以我将回答Usman Iqbal的问题作为答案。也许某些管理员可以将其转换为评论。
隐式回调函数创建一个名为Closure的结构:一个包含实际函数及其创建上下文的对象。该上下文包含“围绕”回调的所有变量以及函数创建时的值。闭包不包含上下文的public class SpecialItems implements Items.MyList {
}
的值,因为它本身是一个对象,并且在执行回调时具有自己的this
。
要直接使用创建上下文的this
,按定义,箭头函数将处理this
,使其不是闭包的this
,而是闭包的this
。创建上下文。没有箭头功能,您可以通过将周围的this
显式复制到闭包的上下文中来实现相同的目的:
this