Angular2中的@Input装饰器用于在父组件和子组件之间传递数据。当父组件需要向子组件传递一个数组对象时,可以使用@Input装饰器。
@Input装饰器允许将一个属性标记为输入属性,这样父组件就可以将数据绑定到该属性上,然后传递给子组件。在子组件中,可以通过该属性来访问传递过来的数组对象。
以下是一个示例:
父组件中的代码:
import { Component } from '@angular/core';
@Component({
selector: 'app-parent',
template: `
<app-child [data]="dataArray"></app-child>
`
})
export class ParentComponent {
dataArray: any[] = [
{ name: 'John', age: 25 },
{ name: 'Jane', age: 30 },
{ name: 'Bob', age: 35 }
];
}
子组件中的代码:
import { Component, Input } from '@angular/core';
@Component({
selector: 'app-child',
template: `
<ul>
<li *ngFor="let item of data">{{ item.name }} - {{ item.age }}</li>
</ul>
`
})
export class ChildComponent {
@Input() data: any[];
}
在父组件中,我们使用[data]="dataArray"将父组件中的dataArray属性绑定到子组件的data属性上。在子组件中,我们使用@Input()装饰器来声明一个名为data的输入属性。
然后,我们可以在子组件的模板中使用*ngFor指令来遍历传递过来的数组对象,并显示每个对象的name和age属性。
这样,当父组件的dataArray属性发生变化时,子组件中的data属性也会随之更新,从而实现了父子组件之间的数据传递。
推荐的腾讯云相关产品:腾讯云云服务器(CVM)、腾讯云云数据库MySQL(CDB)、腾讯云对象存储(COS)。
腾讯云云服务器(CVM):https://cloud.tencent.com/product/cvm
腾讯云云数据库MySQL(CDB):https://cloud.tencent.com/product/cdb
腾讯云对象存储(COS):https://cloud.tencent.com/product/cos
领取专属 10元无门槛券
手把手带您无忧上云