0
我有一個組件dataservice.ts
與函數(),將提供一個字符串:如何顯示angular2中另一個組件的函數數據?
httpString: string = "https://";
complUrl: string = "";
something: string = "something";
something: string = ".something";
constructor(private http: Http) {
}
buildUrl(): void {
let pId = "015111810666";
let dId = "i21wcwg2hssv2t9";
this.complUrl = this.httpString + this.something + this.something + pId + dId;
console.log(complUrl);
}
,我想查詢complUrl
的另一個組成部分 - myComponent.ts
- 通過的OnInit
constructor(private myDataService: MyDataService) {
}
ngOnInit() {
this.myDataService.buildUrl();
}
什麼我做錯了嗎?我想這很簡單,但我無法弄清楚。
你錯過了''''這裏'something:string =「something;'你有在另一個組件或提供者的功能嗎? –
謝謝! MHM。是的,正如我所說:我有一個組件dataservice.ts和一個組件,我想要運行該函數buildUrl() – edamerau
你使用其他組件html的dataservice組件? –