2

首先,如果这是一个糟糕的设计,我很乐意改变。

在我的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()被正确调用。但是在打电话时(或者也许曾经,但我不知道如何确定)两者yearmonthOfYearare undefined

如何确保在 at 传递值ngOnInit(),或者是否有更好的模式来实现这一点?

4

2 回答 2

5

所以这实际上很简单,但从教程/文档中并不清楚。

这是解决方案:

<month year="2016" monthOfYear="4">Loading...</month>

属性周围的方括号表示组件应将其视为与父组件的数据绑定。因此,如果您想从父级传递这些值,您将执行以下操作:

<month [year]="year" [monthOfYear]="month">Loading...</month>

在您的情况下,您正在分配字符串文字,因此不需要方括号。此外,您应该声明您的组件实现了 OnInit,但这似乎与执行没有任何关系。

于 2016-05-25T00:01:41.547 回答
2

如果我理解正确,您尝试将一些值从 index.html 传递给 Component (在这种情况下成为根组件)。我不确定这是否可行,因为 Angular 被根组件引导并且无法提供 index.html(这是托管 Angular 的页面)。

通常在 index.html 中你有一个根(比如 AppComponent)。AppComponent 包含您的组件(例如 MonthComponent)。AppComponent 可以将值传递给 MonthComponent。

我希望这有帮助

于 2016-05-25T03:51:26.643 回答