매개 변수가있는 경로로 데이터를 가져 오려고합니다. HTML에서 호출은 다음과 같이이다 :각도 - 매개 변수화 된 경로를 기반으로 동적 URL에서 데이터 검색
<a routerLink="my-component/2017">2017</a>
구성 요소는 주로 다음과 같습니다
export class MyComponent implements OnInit, OnDestroy {
year: string;
destination: any[];
constructor(private _route: ActivatedRoute,
private _info: MyService) {}
ngOnInit() {
const urlBase = 'http://...';
this.subsUrl = this._route.paramMap.subscribe(
params => { this.year = params.get('year'); });
this._info.url = urlBase + this.year;
this.subsTree = this._info.getJsonData()
.subscribe(resultArray => this.destination = resultArray,
error => alert(error));
}
ngOnDestroy() {
this.subsTree.unsubscribe();
this.subsUrl.unsubscribe();
}
및 서비스 : 하나의 매개 변수에 대한
@Injectable()
export class MyService {
url: string;
constructor(private _http: HttpClient) { }
getJsonData() {
return this._http
.get(this.url)
.catch(this.handleError);
}
}
제대로 서비스가 반환하는 데이터 (그 해). 내 문제는 내가 수동으로 페이지를 새로 고칠 때까지 데이터를 변경하지 않는 연도를 변경합니다.
나는 문서를 읽기 제안 대신 PARAMS에 subscribe''의, HTTPS '사용 switchMap' 및 모든 데이터가 가져 오는 할 것 : /을 /angular.io/guide/router – Ric