如何将组件作为输入传递给另一个组件?

问题描述 投票:0回答:1

我正在使用ngx-bootstrap模态组件,我想动态传递其组件进行显示。我不知道该怎么做。

我使用以下示例,组件作为内容:https://ng-bootstrap.github.io/#/components/modal/examples

我不能用@Input()传递它,因为它不是变量的实例。

import { Component, OnInit } from '@angular/core';
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
import { ActualContentComponent} from 'path/path/path';

//TODO: Fix hard important of a component
@Component({
  selector: 'srd-modal',
  templateUrl: './srd-modal.component.html',
  styleUrls: ['./srd-modal.component.css']
})
export class SharedModalComponent implements OnInit {

  constructor(private modalService: NgbModal) {}

  open() {
    const modalRef = this.modalService.open(ActualContentComponent);
    modalRef.componentInstance.name = 'content';
  }

  ngOnInit() {
  }

}

上面的例子很有用,但我对'ActualContentComponent'有一个很难的引用。我宁愿避免一个巨大的开关来查看实际打开的组件(通过传递组件的名称)。

编辑:我发现我实际上可以通过@Input()传递组件

 @Input()
 public component;

 constructor(private modalService: NgbModal) {}

 open() {
    const modalRef = this.modalService.open(this.component);
    modalRef.componentInstance.name = this.buttonTitle;
  }

根据一些搜索结果,我认为这是不可能的。我想知道我应该为组件使用什么数据类型。

编辑2:我猜根据https://angular.io/api/core/Type键入

angular angular-components ngx-bootstrap
1个回答
0
投票

也许你可以在open方法中传递组件类型?:

    open(component: Type) {
         const modalRef = this.modalService.open(type);
         modalRef.componentInstance.name = 'content';
    }
© www.soinside.com 2019 - 2024. All rights reserved.