web-dev-qa-db-ja.com

Angular2、コンポーネント内の文字列からテンプレートを評価します

変数の文字列からテンプレートを評価することは可能ですか?式の代わりに文字列をコンポーネントに配置する必要があります。

template: "<div>{{ template_string }}</div>"

template_stringに含まれるもの:<b>{{ name }}</b>

そして、すべてが<div><b>My Name</b></div>に評価される必要があります

でも<div>{{ template_string }}</div>が見えます

現在のコンテキストで変数の内容を評価するには、{{ template_string | eval }}などが必要です。

それが可能だ?コンポーネントの使用時にtemplate_stringを変更できるため、このアプローチを使用するための何かが必要です。

編集1:

Angularバージョン:4.0.3

例えば。

@Component({
  selector: 'product-item',
  template: `
    <div class="product">{{ template }}</div>`,
})
export class ProductItemComponent {
  @Input() name: string;
  @Input() price: number = 0;
  @Input() template: string = `{{ name }} <b>{{ price | currency }}</b>`;
}

使用法:

<product-item [name]="product.name" [price]="product.price"></product-item>

予想:製品名SD3.

出力:{{ name }} <b>{{ price | currency }}</b>

8
rafrsr

それを行う独自のディレクティブを作成できます。

compile.directive.ts

@Directive({
  selector: '[compile]'
})
export class CompileDirective implements OnChanges {
  @Input() compile: string;
  @Input() compileContext: any;

  compRef: ComponentRef<any>;

  constructor(private vcRef: ViewContainerRef, private compiler: Compiler) {}

  ngOnChanges() {
    if(!this.compile) {
      if(this.compRef) {
        this.updateProperties();
        return;
      }
      throw Error('You forgot to provide template');
    }

    this.vcRef.clear();
    this.compRef = null;

    const component = this.createDynamicComponent(this.compile);
    const module = this.createDynamicModule(component);
    this.compiler.compileModuleAndAllComponentsAsync(module)
      .then((moduleWithFactories: ModuleWithComponentFactories<any>) => {
        let compFactory = moduleWithFactories.componentFactories.find(x => x.componentType === component);

        this.compRef = this.vcRef.createComponent(compFactory);
        this.updateProperties();
      })
      .catch(error => {
        console.log(error);
      });
  }

  updateProperties() {
    for(var prop in this.compileContext) {
      this.compRef.instance[prop] = this.compileContext[prop];
    }
  }

  private createDynamicComponent (template:string) {
    @Component({
      selector: 'custom-dynamic-component',
      template: template,
    })
    class CustomDynamicComponent {}
    return CustomDynamicComponent;
  }

  private createDynamicModule (component: Type<any>) {
    @NgModule({
      // You might need other modules, providers, etc...
      // Note that whatever components you want to be able
      // to render dynamically must be known to this module
      imports: [CommonModule],
      declarations: [component]
    })
    class DynamicModule {}
    return DynamicModule;
  }
}

使用法:

@Component({
  selector: 'product-item',
  template: `
    <div class="product">
      <ng-container *compile="template; context: this"></ng-container>
    </div>
  `,
})
export class ProductItemComponent {
  @Input() name: string;
  @Input() price: number = 0;
  @Input() template: string = `{{ name }} <b>{{ price | currency }}</b>`;
}

プランカーの例

も参照してください

16
yurzui

テンプレート文字列をどのように作成しているかわからない

import { ..., OnInit } from '@angular/core';

@Component({
    selector: 'product-item',
    template: `
    <div class="product" [innerHtml]='template_string'>
    </div>`,
    })
export class ProductItemComponent implements OnInit {
    @Input() name: string;
    @Input() price: number = 0;
    @Input() pre: string;
    @Input() mid: string;
    @Input() post: string;
    template_string;
    ngOnInit() {
        // this is probably what you want
        this.template_string = `${this.pre}${this.name}${this.mid}${this.price}${this.post}`
    }
}

<product-item [name]="name" [price]="price" pre="<em>" mid="</em><b>" post="</b>"></product-item>

文字列はコンポーネントの外部から作成できますが、動的テンプレートを制御するにはngIfのようなものをお勧めします。

0
tesgo

In Angular二重中括弧{{}}は、コンポーネントのテンプレート内の式を評価するために使用されます。ランダムな文字列や動的に追加されたDOM要素では機能しません。したがって、これを行う1つの方法は次のとおりです。 ${}を使用してTypeScript文字列補間を使用します。残りのコードをチェックして理解します。

@Component({
  selector: 'product-item',
  template: `
    <div class="product" [innerHTML]="template"></div>`,
})
export class ProductItemComponent {
  @Input() name: string;
  @Input() price: number = 0;
  @Input() template: string = `${ this.name } <b>${ this.price }}</b>`;
}
0
Khurram