在我的一个angular2应用程序中,我想在输入字段中显示模型的innerHTML,其中附有一个模型。
<input type="text" [(ngModel)]="studentCategory" [innerHTML]="studentCategory"/>
studentCategory的值来自数据库,其中有一些&#39;&amp; #174;&#39;值。它直接显示在文本框中,而应显示注册符号
我可以通过以下方式轻松显示
<p [innerHTML]="studentCategory"/></p>
但不是在附有模型的输入中。
提前致谢。