如何有条件地将 div 包裹在 ng 内容周围



根据(布尔)类变量的值,我希望我的ng-content要么被包装在div中,要么不被包装在div中(即div甚至不应该在DOM中)......最好的方法是什么?我有一个 Plunker 试图做到这一点,我认为这是最明显的方式,使用 ngIf ..但它不起作用...它仅显示其中一个布尔值的内容,而不显示另一个布尔值的内容

请协助谢谢!

http://plnkr.co/edit/omqLK0mKUIzqkkR3lQh8

@Component({
  selector: 'my-component',
  template: `
   <div *ngIf="insideRedDiv" style="display: inline; border: 1px red solid">
      <ng-content *ngIf="insideRedDiv"  ></ng-content> 
   </div>
   <ng-content *ngIf="!insideRedDiv"></ng-content>     
  `,
})
export class MyComponent {
  insideRedDiv: boolean = true;
}

@Component({
  template: `
    <my-component> ... "Here is the Content"  ... </my-component>
  `
})
export class App {}

Angular ^4

作为解决方法,我可以为您提供以下解决方案:

<div *ngIf="insideRedDiv; else elseTpl" style="display: inline; border: 1px red solid">
  <ng-container *ngTemplateOutlet="elseTpl"></ng-container>
</div>
<ng-template #elseTpl><ng-content></ng-content> </ng-template>

Plunker 示例 角度 v4

角度<4

在这里,您可以创建专用指令来执行相同的操作:

<div *ngIf="insideRedDiv; else elseTpl" style="display: inline; border: 1px red solid">
   <ng-container *ngTemplateOutlet="elseTpl"></ng-container>
</div>
<template #elseTpl><ng-content></ng-content></template>

普伦克示例

ngIf4.ts

class NgIfContext { public $implicit: any = null; }
@Directive({ selector: '[ngIf4]' })
export class NgIf4 {
  private context: NgIfContext = new NgIfContext();
  private elseTemplateRef: TemplateRef<NgIfContext>;
  private elseViewRef: EmbeddedViewRef<NgIfContext>;
  private viewRef: EmbeddedViewRef<NgIfContext>;
  constructor(private viewContainer: ViewContainerRef, private templateRef: TemplateRef<NgIfContext>) { }
  @Input()
  set ngIf4(condition: any) {
    this.context.$implicit = condition;
    this._updateView();
  }
  @Input()
  set ngIf4Else(templateRef: TemplateRef<NgIfContext>) {
    this.elseTemplateRef = templateRef;
    this.elseViewRef = null;
    this._updateView();
  }
  private _updateView() {
    if (this.context.$implicit) {
      this.viewContainer.clear();
      this.elseViewRef = null;
      if (this.templateRef) {
        this.viewRef = this.viewContainer.createEmbeddedView(this.templateRef, this.context);
      }
    } else {
      if (this.elseViewRef) return;
      this.viewContainer.clear();
      this.viewRef = null;
      if (this.elseTemplateRef) {
        this.elseViewRef = this.viewContainer.createEmbeddedView(this.elseTemplateRef, this.context);
      }
    }
  }
}

请记住,您可以将所有这些逻辑放在单独的组件中!(根据Yurzui的回答):

import { Component, Input } from '@angular/core';
@Component({
    selector: 'div-wrapper',
    template: `
    <div *ngIf="wrap; else unwrapped">
      <ng-content *ngTemplateOutlet="unwrapped">
      </ng-content>
    </div>
    <ng-template #unwrapped>
      <ng-content>
      </ng-content>
    </ng-template>
    `,
})
export class ConditionalDivComponent {
  @Input()
  public wrap = false;
}

然后,您可以像这样使用它:

<div-wrapper [wrap]="'true'">
 Hello world!        
</div-wrapper>

我检查了一下,发现了一个关于标签多重嵌入主题的未决问题。这可以防止您在单个模板文件中定义多个标签。

这就解释了为什么只有在 plunker 示例中删除其他标签时,内容才会正确显示。

您可以在此处看到未解决的问题:https://github.com/angular/angular/issues/7795

最新更新