尝试将地理位置服务的经度和纬度拉入list.service http.get请求URL。
1期:
感谢有关此问题和时间的帮助
list.service.ts
import { Injectable } from '@angular/core';
import { Observable } from 'rxjs';
import { List } from '../models/list.model';
import { map } from 'rxjs/operators';
import { GeolocationService } from '../services/geolocation.service';
import { mergeMap } from 'rxjs/operators';
import { HttpClient } from '@angular/common/http';
@Injectable()
export class ListService {
private serverApi = 'http://localhost:3000';
constructor(private http: HttpClient, private geoServ: GeolocationService) { }
public getAllLists(): Observable<List[]> {
return this.geoServ.getGeoLocation().pipe(
mergeMap<{businesses: List[]}>(({ latitude, longitude }) =>
this.http.get(`${this.serverApi}/yelp/${longitude}/${latitude}`).pipe(
)
),
map(res => res.businesses));
}
}
geolocation.service.ts
import { Injectable } from '@angular/core';
import { Observable, Subject, asapScheduler, pipe, of, from, interval, merge, fromEvent, SubscriptionLike, PartialObserver } from 'rxjs';
@Injectable({
providedIn: 'root'
})
export class GeolocationService {
constructor() { }
getGeoLocation() {
return new Observable((observer) => {
console.log('Geolocation working!');
const options = {
enableHighAccuracy: true,
timeout: 5000,
maximumAge: 0
};
const success = (pos) => {
const crd = pos.coords;
console.log(`Longitude : ${crd.longitude}`);
const location = {
"latitude" : crd.longitude,
"longitude": crd.longitude
};
observer.next(location);
observer.complete();
};
const error = (err) => {
console.warn(`ERROR(${err.code}): ${err.message}`);
observer.error(err);
observer.complete();
};
navigator.geolocation.getCurrentPosition(success, error, options);
});
}
}
list.model.ts
export interface List {
id: string;
name?: string;
rating?: number;
review_count?: number;
url?: string;
location: string;
display_name?: string;
image_url?: string;
is_closed?: boolean;
}
添加了model.ts以帮助阐明
答案 0 :(得分:3)
似乎您仍在使用旧的有角度的http客户端。这也不适合键入。要解决类型问题,请在>>> workout.is_saved
False
通用参数中添加类型对象
>>> workout.is_saved = True
>>> workout.is_saved
False
答案 1 :(得分:3)
您的代码说您的GET返回一个List[]
,但是一个数组将没有businesses
属性,这就是它抱怨的原因。您可以使用:
public getAllLists(): Observable<List[]> {
return this.geoServ.getGeoLocation().pipe(
mergeMap(({ latitude, longitude }) =>
this.http.get<any>(`${this.serverApi}/yelp/${longitude}/${latitude}`)
),
map(res => res.businesses));
}
这将编译,但是如果响应确实是一个数组,则Observable
可能最终发出undefined