0
我實際上是在搜索用戶的位置(至少是地理區域)的API,可以很容易地使用Angular2打字稿代碼。如何在Angular2中讀取用戶當前的地理區域?
我實際上是在搜索用戶的位置(至少是地理區域)的API,可以很容易地使用Angular2打字稿代碼。如何在Angular2中讀取用戶當前的地理區域?
import { Injectable} from '@angular/core';
import { Observable } from 'rxjs/Observable';
import {Http} from '@angular/http';
import 'rxjs/Rx';
@Injectable()
export class CurrentLocationService {
constructor(private _http: Http) {}
getCurrentLocation(): Observable<any> {
return this._http.get('http://ipinfo.io/json?callback=JSON_CALLBACK')
.map(response => response.json())
.catch(error => {
console.log(error);
return Observable.throw(error.json());
});
}
}
你有沒有檢查過如何在JS中做到這一點?這在Angular中是一樣的;-) –