嗨我想从谷歌api获取城市名称,但下面的错误是我的代码
appcomponent class
import {Component, OnInit} from 'angular2/core';
import {marketComponent} from './market.component';
import {RouteConfig, ROUTER_DIRECTIVES} from 'angular2/router';
import {introComponent} from './intro.component';
import {geoService} from './service.geo';
import {JSONP_PROVIDERS} from 'angular2/http';
declare var google: any;
@Component({
selector: 'my-app',
templateUrl: 'app/app.component.html',
directives: [ROUTER_DIRECTIVES],
providers: [JSONP_PROVIDERS, geoService]
})
@RouteConfig([
{ path: '/intro', name: 'Intro', component: introComponent, useAsDefault: true },
{ path: '/market', name: 'Market', component: marketComponent },
])
export class AppComponent {
constructor(private _http: geoService) { }
public maps;
public cat_error: Boolean = false;
public xml_Latitude :string;
public xml_Lang: string;
ngOnInit() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(this.showPosition);
} else {
alert("Geolocation is not supported by this browser.");
}
var input: any = document.getElementById('google_places_ac');
var autocomplete = new google.maps.places.Autocomplete(input, {});
google.maps.event.addListener(autocomplete, 'place_changed', function () {
var place = autocomplete.getPlace();
console.log(place)
});
}
showPosition(position) {
this.xml_Latitude = position.coords.latitude;
this.xml_Lang = position.coords.longitude;
this._http.getPlaces(this.xml_Latitude, this.xml_Lang).subscribe(
data => { this.maps = data },
err => { this.cat_error = true }
);
var result = this.maps.results;
var city = result[0].address_components[4].long_name + "," + result[0].address_components[6].long_name;
alert(city);
}
}
和地理服务文件
import {Injectable} from 'angular2/core';
import { Response, Jsonp} from 'angular2/http';
import 'rxjs/add/operator/map';
@Injectable()
export class geoService {
constructor(private http: Jsonp) { }
public xml_Latitude: string;
public xml_Lang: string;
public getPlaces(xml_Latitude, xml_Lang) {
return this.http.get(`http://maps.googleapis.com/maps/api/geocode/json?latlng=
'${this.xml_Latitude}','${this.xml_Lang}'&sensor=true`)
.map((res: Response) => res.json())
.catch(this.handleError);
}
private handleError(error: Response) {
console.error(error);
return error.json().error || 'Server error';
}
}
错误也说getplaces不是一个函数,我想我错过了什么,但不知道是什么....
答案 0 :(得分:3)
除了Thierry发现的回调排序问题之外,此行还有一个丢失的this
上下文:
navigator.geolocation.getCurrentPosition(this.showPosition);
您有经典的JavaScript问题,称为错误的this
上下文。
this
keyword in JavaScript的行为与C#和Java等其他语言的行为不同。
this
如何运作函数中的this
关键字确定如下:
*如果该函数是通过调用.bind
创建的,则this
值是提供给bind
的参数
*如果函数是通过方法调用调用,例如expr.func(args)
,然后this
为expr
* 除此以外
*如果代码位于strict mode,则this
为undefined
*否则,this
为window
(在浏览器中)
让我们来看看它在实践中是如何运作的:
class Foo {
value = 10;
doSomething() {
// Prints 'undefined', not '10'
console.log(this.value);
}
}
let f = new Foo();
window.setTimeout(f.doSomething, 100);
此代码将打印undefined
(或者,在严格模式下,抛出异常)。
这是因为我们最终在上面决策树的最后一个分支中。
调用了doSomething
函数,该函数不是bind
调用的结果,并且未在方法语法位置调用。
我们看不到setTimeout
的代码,看看它的调用是什么样的,但我们不需要。
需要注意的是,所有doSomething
方法都指向相同的函数对象。
换句话说:
let f1 = new Foo();
let f2 = new Foo();
// 'true'
console.log(f1.doSomething === f2.doSomething);
我们知道setTimeout
只能看到我们传递的函数,所以当它调用该函数时,
它无法知道提供哪个this
。
由于引用方法而没有调用,this
上下文已丢失。
一旦您了解this
个问题,就很容易发现:
class Foo {
value = 10;
method1() {
doSomething(this.method2); // DANGER, method reference without invocation
}
method2() {
console.log(this.value);
}
}
这里有几个选项,每个选项都有自己的权衡。 最佳选择取决于从不同的呼叫站点调用相关方法的频率。
使用arrow function初始化每个实例的成员,而不是使用常规方法语法。
class DemonstrateScopingProblems {
private status = "blah";
public run = () => {
// OK
console.log(this.status);
}
}
let d = new DemonstrateScopingProblems();
window.setTimeout(d.run); // OK
this
上下文而不是每个调用站点在调用时创建新闭包的效率更高。this
上下文super.
为了解释原因,这里显示了一些虚拟参数:
class DemonstrateScopingProblems {
private status = "blah";
public something() {
console.log(this.status);
}
public run(x: any, y: any) {
// OK
console.log(this.status + ': ' + x + ',' + y);
}
}
let d = new DemonstrateScopingProblems();
// With parameters
someCallback((n, m) => d.run(n, m));
// Without parameters
window.setTimeout(() => d.something(), 100);
答案 1 :(得分:2)
我认为您应该将result
块移动到与getPlaces方法调用关联的subscribe回调中:
showPosition(position) {
this.xml_Latitude = position.coords.latitude;
this.xml_Lang = position.coords.longitude;
this._http.getPlaces(this.xml_Latitude, this.xml_Lang).subscribe(
data => {
this.maps = data;
var result = this.maps.results; // <----------
var city = result[0].address_components[4].long_name + "," + result[0].address_components[6].long_name;
alert(city);
},
err => { this.cat_error = true }
);
}
这是因为在调用回调之前未定义this.maps
。并且您尝试在result
)之前获取this.maps.results
属性。
修改强>
我也在navigator.geolocation.getCurrentPosition
行看到了问题。您可以通过这种方式重构代码:
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition((position) => { // <----
this.showPosition(position);
});
} else {
alert("Geolocation is not supported by this browser.");
}