我有一个我创建的组件及其被调用的选项,因为它呈现了编辑和删除按钮。然后我有一个可重用的表组件。我将表组件注入到站点的视图中。然后我导入选项组件,但我没有在该视图上显示它,因为我想将它传递给表组件并将其呈现为标记。是否存在将选项组件从主组件传递到表组件并注入它,因为不是没有具有相同选项组件的表。
options.component.ts
@Component({
selector: 'options',
template: `
<div class="btn-group btn-group-toggle" data-toggle="buttons">
<label class="btn btn-secondary active">
<input type="radio" name="options" id="option" autocomplete="off" checked>Edit
</label>
<label class="btn btn-danger">
<input type="radio" name="options" id="option" autocomplete="off" checked>Delete
</label>
</div>`,
styles: []
})
export class OptionsComponent implements OnInit {
constructor() { }
ngOnInit() { }
}
main.component.ts
import { TableComponent } 'file location here';
import { OptionsComponent } 'file location here'; // Component is injected here and I want to pass it to <app-table></app-table>
@Component({
selector: 'app-main',
template:'<app-table [tableData]="LocationsList"></app-table>'
})
export MainComponent implements OnInit {
LocationsList: []; // list of locations
}
table.row.component.ts
@Component({
selector: 'app-table',
template: `
<ul>
<li *ngFor="let property of tableData">{{ property }}</li>
</ul>`,
})
export class TableComponent implements OnInit {
@Input() tableData: any[];
}
答案 0 :(得分:0)
如果要将信息注入childComponent,请像这样使用@input。
ChildComponent.ts:
@Input() inputVariableName: InputObjectType;
ParentComponent.html:
<app-child-selector [inputVariableName]="parentComponentVariableName">
</app-child-selector>
如果你想将信息从子组件传递给父组件,它会有点复杂,但我建议使用观察者模式,服务和均衡器。 希望有所帮助。
答案 1 :(得分:0)
如果要将HTML作为参数传递给组件,有很多方法,包括优点和限制。 大部分不同:
<ng-content>
。 (最简单,但有很大的局限性)@ContentChildren
,TemplateRef
,ViewContainerRef
,结构指令。 (柔性)@Input
并将其呈现在另一个内部(使用ViewContainerRef.createComponent
,[ngComponentOutlet]
等)。 (看起来很脏)他们需要一些帮助代码。他们可能会有一些“变态”。 hhoice取决于很多原因。