まず第一に、これがひどいデザインである場合は、喜んで変更します。
私のindex.html
私には、体に、次のものがあります。
<month [year]="2016" [monthOfYear]="4">Loading...</month>
month.component.ts
は次のとおりです。
import { Component, Input, OnInit } from '@angular/core';
import { DayComponent } from '../day/day.component';
import * as Models from '../../../models/_models';
@Component({
selector: 'month',
moduleId: module.id,
templateUrl: 'month.component.html',
styleUrls: ['month.component.css'],
directives: [DayComponent]
})
export class MonthComponent {
name: string;
days: Models.Day[];
@Input('year') year: number;
@Input('monthOfYear') monthOfYear: number;
month: Models.Month;
ngOnInit() {
this.month = new Models.Month(this.year, this.monthOfYear);
this.name = this.month.getMonthName();
this.days = this.month.days;
}
}
...そしてngOnInit()
、正しく呼び出されます。ただし、呼び出し時 (またはおそらくこれまでに、それを決定する方法がわかりません)year
との両方monthOfYear
がundefined
.
で値が確実に渡されるようにするにはどうすればよいですかngOnInit()
、またはこれを達成するためのより良いパターンはありますか?