我有一个看起来像这样的中继器设置
<table class="table table-condensed">
<tr ng-repeat="m in resp.AvailableTemplates">
<td>
<input type="checkbox" ng-model="m.Selected" />
<span ng-bind-html="m.MessageText"></span>
</td>
</tr>
</table>
其中 m.MessageText 是一个字符串,看起来像
Hello <input type='text' value=''/>!, thanks for the <input type='text' value=''/>
用户将看到一个模板短语列表,检查所需的短语,填写文本区域,然后提交一封电子邮件,其中填写了所提供的短语。
通过使用 ng-bind-html,输出看起来应该是正常的。但是当使用 ng-model 时,输出不显示 html。如何绑定这些信息,使其呈现为正确的 html,同时还允许我收集用户提供的信息?