角度1のアプリをより効率的なものに移動したいので、私は角度2の初心者です。そして、私は2つのコンポーネント間の通信を利用する方法を理解していません。私のケースは特別なことだと思うのですが、私のデータを送信したいからです。app.component.tsからhome.ts。 これらの2つのクラスは同じディレクトリにありません。app.component.tsと別のコンポーネントとの通信角度2
<ion-menu [content]="content" side="left" id="menuParameter">
<ion-header>
<ion-toolbar color="default">
<ion-title>Menu1</ion-title>
</ion-toolbar>
</ion-header>
<ion-content>
<ion-list>
<ion-item>
<ion-label>On/Off</ion-label>
<!-- click here to switch on/off -->
<ion-toggle color="danger" checked="false" [(ngModel)]="isToggled" (ionChange)="notify()"></ion-toggle>
</ion-item>
</ion-list>
</ion-content>
</ion-menu>
<ion-menu [content]="content" side="right" id="menuInformation">
<ion-header>
<ion-toolbar color="default">
<ion-title>Menu2</ion-title>
</ion-toolbar>
</ion-header>
<ion-content>
</ion-content>
</ion-menu>
<ion-nav [root]="rootPage" #content swipeBackEnabled="false"></ion-nav>
>src
> app
- app.component.ts //where the data are generated - 2 lateral menus
- app.html //html associated to app.component.ts
- app.module.ts
- app.scss
> pages
> home
- home.html //home page
- home.ts
- home.scss
import { Component } from '@angular/core';
import { Platform } from 'ionic-angular';
import { StatusBar } from '@ionic-native/status-bar';
import { SplashScreen } from '@ionic-native/splash-screen';
import { HomePage } from '../pages/home/home';
@Component({
templateUrl: 'app.html'
})
export class AppComponent {
rootPage:any = HomePage;
constructor(platform: Platform, statusBar: StatusBar, splashScreen: SplashScreen) {
platform.ready().then(() => {
statusBar.styleDefault();
splashScreen.hide();
this.isToggled = false;
});
}
public isToggled: boolean;
public notify() {
//i want to send this value to home.ts component !
console.log("Toggled: "+ this.isToggled);
}
}
最後に、私はhome.tsと呼ばれるコンポーネントには、この値を取得したいと思います:事前で
import { Component } from '@angular/core';
import { Logger } from '../../app/logger.service'
import { HttpClient } from '@angular/common/http';
import { NavController, NavParams, MenuController } from 'ionic-angular';
import {TranslateService} from '@ngx-translate/core';
@Component({
selector: 'page-home',
templateUrl: 'home.html'
})
/**
* Contain link with
*/
export class HomePage {
private logger:Logger = new Logger(this.constructor.name);
constructor(public translate: TranslateService, public navCtrl: NavController,
public navParams: NavParams,
public menu: MenuController, private httpClient:HttpClient) {
this.logger.log("instantiating HomePage()");
menu.enable(true);
translate.setDefaultLang('en');
translate.use('en');
}
openMenu(evt) {
if(evt === "main"){
this.menu.enable(true, 'menuParameter');
this.menu.enable(false, 'menuInformation');
}else{
this.menu.enable(true, 'menuInformation');
this.menu.enable(false, 'menuParameter');
}
this.menu.toggle();
}
//method to get the value catched in app.component.ts that is to say the button value (true or False)!
}
感謝
JP
https://angular.io/guide/component-interaction – jonrsharpe
私のコードでは一切遺産 – Alex99
上記は、また、そのための方法を提供するがありません。それらが完全に別々の*アプリケーション*にある場合、外部APIを介して通信する必要があります。 – jonrsharpe