首先,如果这是一个糟糕的设计,我很乐意改变。
在我的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
are undefined
。
如何确保在 at 传递值ngOnInit()
,或者是否有更好的模式来实现这一点?