当前位置:  开发笔记 > 编程语言 > 正文

如何将@Input()参数传递给使用DynamicComponentLoader创建的角度2组件

如何解决《如何将@Input()参数传递给使用DynamicComponentLoader创建的角度2组件》经验,为你挑选了1个好方法。

DynamicContentLoader文档没有解释我如何正确加载子组件的输入.假设我有一个孩子喜欢:

@Component({
  selector: 'child-component',
  template: ''
})
class ChildComponent {
  @Input() thing : any;
}

和父母一样:

@Component({
  selector: 'my-app',
  template: 'Parent (
)' }) class MyApp { thing : any; constructor(dcl: DynamicComponentLoader, elementRef: ElementRef) { dcl.loadIntoLocation(ChildComponent, elementRef, 'child'); } }

我应该如何thing进入子组件,以便两个组件可以绑定同一个数据.

我试着这样做:

@Component({
  selector: 'my-app',
  template: 'Parent (
)' }) class MyApp { thing : any; constructor(dcl: DynamicComponentLoader, elementRef: ElementRef) { dcl.loadIntoLocation(ChildComponent, elementRef, 'child').then(ref => { ref.instance.thing = this.thing; }); } }

它有点工作,但它们没有像你期望的那样同步.

基本上我试图通过在角度1中使用ng-include来实现同样的事情,其中​​子项是动态确定的组件并与其父项共享模型.

提前致谢 ...



1> Thierry Temp..:

我为你的问题做了一些测试,我无法重现它.

这是我的子组件的内容:

@Component({
  selector: 'child-component',
  template: `
    
Child component -
` }) export class ChildComponent { @Input() thing : any; constructor() { } }

以下是父组件的内容:

@Component({
  selector: 'my-dyn-parent',
  template: `
    
Parent component - (

)
` }) export class ParentComponent { thing : any; constructor(dcl: DynamicComponentLoader, elementRef: ElementRef) { this.thing = { name: 'test name' }; dcl.loadIntoLocation(ChildComponent, elementRef, 'child') .then((compRef:ComponentRef) => { compRef.instance.thing = this.thing; }); } }

所以我在同一个元素上绑定了两个输入:一个在父组件中,一个在子组件中.当我更新一个输入中的值时,另一个值将在另一个输入中更新.

因此,两个组件共享同一个实例并可以更新它.也许我在你的用例中遗漏了一些东西,所以请随时告诉我!

希望它对你有帮助,蒂埃里


如果`thing`是一个对象或一个数组,这个解决方案很有效,因为父和子都得到对同一个对象的引用.但是,如果`thing`是基本类型(String,number,boolean),它就不起作用 - parent和child各自得到它们自己的原语.[Plunker](http://plnkr.co/edit/MuvEyCLOzNX3J28ZI3UY?p=preview).Eric的EventEmitter解决方案似乎是一种更通用的解决方案(它适用于引用类型和原始类型).
推荐阅读
路人甲
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有