Angular2:使用管道动态渲染模板

Angular2: Use Pipe to render templates dynamically

我正在创建一个从后端获取字段的表单。映射后,我有这样的东西:

genericFilters: {
        iboId: {
            'display': false,
            'template': ''
        },
        iboCode: {
            'display': true,
            'template': 'text_input_iboCode',
            /*'template': 'text/iboCode'*/
        },
        iboName: {
            'display': true,
            'template': 'text_input_iboName'
        },
        iboSurname: {
            'display': true,
            'template': 'text_input_iboSurname'
        },
        iboRank: {
            'display': false,
            'template': 'multiselect_iboRank',
            /*'template': 'select/multi_iboRank',*/
        },
        iboEmail: {
            'display': false,
            'template': 'text_input_iboEmail'
        },
        iboNewsletter: {
            'display': true,
            'template': 'simple_select_iboNewsletter',
            /*'template': 'select/simple_iboNewsletter',*/
        },
    };

我的想法是在应用程序中为表单字段创建每个字段类型(checkboxmultiselecttextradio 等)等级。并使用上面映射的 JSON 将特定字段类型应用于从后端接收的每个字段。

在我的示例中,字段 iboId 的字段类型应为 <text_input_iboCode>

所以,在我看来,我不想拥有这样的东西:

<text_input_iboCode></text_input_iboCode>
<text_input_iboName></text_input_iboName>
<text_input_iboSurname></text_input_iboSurname>

其实我希望表单创建更抽象一些,像这样:

<div *ngFor="let field of genericFilters | dynamicTemplateProcessorPipe">
    {{field.template}} <!--This should equal '<text_input_iboName>' for example-->
</div>

问题:

我是要月亮吗?这可能吗?是否有其他或更好的方法来实现这一目标?我是否在滥用 @Pipe 功能?

我实际上使用 @Pipe 进行翻译、格式化、在模板中循环 objects 等。我想我也可以将它们用于 return<fieldTemplate> .

我将开始一项研究,看看使用 <ng-template #fieldTemplate> 是否也是一个可行的选择,同时我希望有人可以通过 @Pipe 阐明此功能的可行性.

在继续我的研究之后,我找不到用 @Pipe 实现我想要的东西的方法,并且有一个很好的理由:@Pipe 不应该那样工作。

我发现 Angular 4 的 NgComponentOutlet

我开始使用它,但我的第一个例子是这样的:

@Component({selector: 'text-input-ibo-name', template: '<input type="text" name="ibo_name">'})
class TextIboName {
}
@Component({
  selector: 'ng-my-form',
  template: `<ng-container *ngComponentOutlet="TextIboName"></ng-container>`
})
class NgMyForm {
  // This field is necessary to expose HelloWorld to the template.
  TextIboName = TextIboName;
}

这是基础。现在我只需要看看如何在我的 *ngFor 中应用 <ng-container *ngComponentOutlet="TextIboName"></ng-container>(参见 OP)。

如果有人要求,我可以用更具体的 'final' 代码更新这个答案。

更新:

这将是我对 select template 的第一种方法,用于在映射 JSON.

上声明的字段
<div *ngFor="let field of genericFilters | dynamicTemplateProcessorPipe">
    <ng-container *ngComponentOutlet="{{field.template}}"></ng-container>
</div>

classes TextIboNameTextIboCodeTextIboSurname等将在公共文件夹中声明并且导入到当前component,只是为了有一个更抽象的方法。

目标是能够在整个应用程序中重复使用这些字段。这样,我将能够在其他地方复制字段 TextIboName,而无需 Copy/Paste HTML 代码或 templates

更新 2:

如果我们移动我们的 'field component',在我的示例中将 TextIboName 移动到另一个 @ngModule 中的外部文件夹,或者我们只是想使用外部 class 来自另一个 @ngModule 我们将不得不使用 NgModuleFactory

改编以上代码:

@Component({
  selector: 'ng-my-form',
  template: `
    <ng-container *ngComponentOutlet="TextIboName;
                                      ngModuleFactory: myModule;"></ng-container>`
})
class NgMyForm {
  // This field is necessary to expose OtherModuleComponent to the template.
  TextIboName = TextIboName;
  myModule: NgModuleFactory<any>;
  constructor(compiler: Compiler) { this.myModule = compiler.compileModuleSync(OtherModule); }
}