从Component angular2中注入html

时间:2016-07-26 10:04:01

标签: html angular components inject

我需要从组件中注入html取决于某些值。 例如,如果property =' TEXT'我需要像这样注入输入:

<input class="form-control"
                   id="value"
                   type="{{type}}"
                   ngControl="value"
                   [(ngModel)]="newValue">

但如果财产是&#39; BIGTEXT&#39;我需要注入textarea:

    <textarea class="form-control" rows="6"
              id="value"
              ngControl="value"
              [(ngModel)]="newValue"
              value="ngForm">
    </textarea>

如果财产是'DATE&#39;我需要注射等 是不是在没有* ngIf =&#34;属性==&#39;某些&#39;&#34;?

的情况下将此注入HTML的方法

0 个答案:

没有答案