をループするときどのように私のコンポーネントの構造は、この角度2 - どのように内部のコンポーネントに値を渡す
Parent.ts
@Component({
template: `
<div *ngFor="let i of optionCollection; let index = index; trackBy: trackByFn">
<Child></Child>
<button type="submit" class="btn btn-primary">Create</button>
</div>
`,
})
export class Parent {
}
Child.ts
@Component({
selector: 'Child'
template: `
<input />
`,
})
export class Child {
indexValueFromParent:any
}
のようなものです親のインデックス値を子コンポーネントに渡し、その値を子のvarに割り当てます。indexValueFromParent
使用viewChild https://angular.io/docs/を始める必要がありますts/latest/cookbook/component-communication.html#!#親からビューへの子 –