他のページ(otherpage.ts
)やその他のコンポーネントから、変数またはアクセス方法app.component.ts
にアクセスして変更したいです。あなたはいくつかの方法でこれを行うことができますIonicの他のページからapp.component変数とメソッドにアクセスするにはどうすればよいですか?
app.component.ts
@Component({
templateUrl: 'app.html'
})
export class MyApp {
accessedVariable: any;
constructor(){ }
accessedMethod() {
..something
}
}
otherpage.ts
@Component({
selector: 'page-other',
templateUrl: './otherpage.html',
})
export class OtherPage {
constructor() { }
}
が '' MyApp'の子をOtherPage'ていますか? – bazzells
@ Dr.Geekは、あなたがとりあえず試みていることを簡単に説明できますか?また、app.componentとotherpageの親が互いに関連しているか、完全に別のものになっています – Mehdi
多分この[answer](https://stackoverflow.com/a/44753236/4254681)が役に立ちます。子ページのメニューコンテンツを変更したいだけの場合は、[service](https://www.tutorialspoint.com/angular2/angular2_services.htm)を使用してください。 – Duannx