我尝试学习 Angular,现在我已经到了这个@Input
阶段。
我有一个主应用程序和一个子组件。在app.component.ts
我有一个测试变量。我想将此变量从app.component.ts
to 传递给child.component.ts
.
// app.component.ts:
export class AppComponent {
test = 10;
}
// child.component.ts:
export class ChildComponent {
@Input() fromParent: number;
childVar = fromParent + 5;
show() {
console.log(this.childVar);
} //this should to show 15 in console...
}
现在,我该怎么做?