請告訴我如何將值從[sub.component.html inputBox]發送到[app.component.ts]。發送數據到Angular的組件
sub.component.html
<input type="text">
sub.component.ts
@Component({
selector: 'app-sub',
templateUrl: './sub.component.html'
})
export class SubComponent{
constructor() { }
}
app.component.html
{{input1}}<br />
{{input2}}
<app-sub></app-sub>
<app-sub></app-sub>
app.component.ts
export class AppComponent {
input1 = '';
input2 = '';
}
將值放在app.component.html中兩個[app-sub]的inputBox中。 我想把輸入框中的值放入變量input1 & input2中。 我不知道如何。
這會幫助你:https://開頭的角度。 io/docs/ts/latest/cookbook/component-communication.html#特別是部分*家長收聽兒童活動* :) – Alex