month-detail.component.html
import ...
@Component({
template: `{{month?.id}} <app-month-date [month]="month"></app-month-date>`
})
export class MonthDetailComponent implements OnInit {
month: Month;
ngOnInit(): void {
this.route.params
.switchMap((params: Params) => this.monthService.getMonth(+params["id"]))
.subscribe(month => (this.month = month));
}
}
month-date.component.html
<p>month-date works! {{month?.id}}</p>
month-date.component.ts
import { Component, OnInit, Input } from "@angular/core";
import { Month } from "app/attendance/month";
@Component({
selector: "app-month-date",
...
})
export class MonthDateComponent implements OnInit {
@Input() month: Month;
ngOnInit() {
//undefined --- here
console.log(this.month);
}}
month?.id shows correctly in month-detail.component.html, but month is undefined with tag app-month-date in month-date.component.ts.
Maybe not get the value on ngOnInit?
month?.idinstead ofmonth.id, the answer will become apparent.