コンポーネント間で Angular2 アプリに共有したいオブジェクトがあります。
最初のコンポーネントのソースは次のとおりです。
/* app.component.ts */
// ...imports
import {ConfigService} from './config.service';
@Component({
selector: 'my-app',
templateUrl: 'app/templates/app.html',
directives: [Grid],
providers: [ConfigService]
})
export class AppComponent {
public size: number;
public square: number;
constructor(_configService: ConfigService) {
this.size = 16;
this.square = Math.sqrt(this.size);
// Here I call the service to put my data
_configService.setOption('size', this.size);
_configService.setOption('square', this.square);
}
}
および 2 番目のコンポーネント:
/* grid.component.ts */
// ...imports
import {ConfigService} from './config.service';
@Component({
selector: 'grid',
templateUrl: 'app/templates/grid.html',
providers: [ConfigService]
})
export class Grid {
public config;
public header = [];
constructor(_configService: ConfigService) {
// issue is here, the _configService.getConfig() get an empty object
// but I had filled it just before
this.config = _configService.getConfig();
}
}
そして最後に、私の小さなサービスである ConfigService:
/* config.service.ts */
import {Injectable} from 'angular2/core';
@Injectable()
export class ConfigService {
private config = {};
setOption(option, value) {
this.config[option] = value;
}
getConfig() {
return this.config;
}
}
私のデータは共有されていません.grid.component.tsでは、_configService.getConfig()
行は空のオブジェクトを返しますが、app.component.tsの直前に入力されています.
ドキュメントとチュートリアルを読みましたが、何も機能しませんでした。
何が欠けていますか?
ありがとう
解決した
私の問題は、ConfigService を 2 回注入していたことです。アプリケーションのブートストラップと、それを使用しているファイル内。
設定を削除したところproviders
、うまくいきました!