内の他のコンポーネントへの1つのコンポーネントサービス応答を渡します.TS:どのように私は1つのコンポーネントでサーバーからの角度4、 取得応答に新しいですし、私は他のコンポーネントで、この応答オブジェクトがどのように</p> <p>app.componentにアクセスしたい角度の2
export class AppComponent {
selected;
skipCount: number = 0;
errorMessage: string;
searchedResults: any;
searchObj: Object = {
skipCount: this.skipCount
};
onChange(newVlaue){
console.log(newVlaue);
this.selected = newVlaue;
}
constructor(
private searchService: searchService,
private router: Router) {}
searchall() {
console.log(this.searchObj);
var searchData = this.searchObj;
console.log(searchData);
this.searchService.getSearchbyDistrictCategoryCity(this.searchObj)
.subscribe(
data => {
this.searchedResults = data;
console.log(this.searchedResults);
this.router.navigate(['/searchdetails/'])
},
error => this.errorMessage = <any>error);
}
}
私は検索の詳細これを取得する方法 のような他の成分でsearchedResults変数結果が欲しいです。
ありがとうございます!
https://angular.io/guide/component-interaction – porgo
あなたのsearchdetailsコンポーネントにsearchedResultsを渡したいようです。あなたのSearchDetailsComponentとルーティングを表示する – brijmcq
@brijmcqはいどのように達成することができます – Ajay