角度如何在组件的模板内部呈现html标记

时间:2018-09-01 16:24:02

标签: angular html5 templates markup

如何在角度组件的模板中显示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;”分别。

还有其他方法可以实现这一目标吗?

0 个答案:

没有答案