如何在角度组件的模板中显示html标记。
如果template.component.html是模板文件,我该如何布置html标记,如下所示:
<form action="" novalidate>
<label for="">
<span>Full Name:</span>
<input type="text" name="fullName" placeholder="your name">
</label>
<div>
<label for="">
<span>Email:</span>
<input type="email" name="email" placeholder="your email address">
</label>
<label for="">
<span>Confirm Email:</span>
<input type="email" name="confirmEmail" placeholder="confirm email address">
</label>
</div>
<button type="submit">Sign up</button>
</form>
这样浏览器可以按原样呈现标记,而不是呈现控件?
对我有用的一个选项是当我只是将<和>替换为“&lt;”时。和“&gt;”分别。
还有其他方法可以实现这一目标吗?