我在HTML中获取模板内容,我希望以渲染的形式显示它们,就像在视图中的文本区域内的正确样式文本一样。
JS:
inviteMessage = "<p>Hello,<br />Name: asdasdasda<br />State Code: 18lc81<br /><br />For accessing site <a href="example.com">click here</a>:<br />example.com</p>";
$scope.inviteMsg = $sce.trustAsHtml(inviteMessage);
查看:
<textarea rows="12" id="inviteMsg" name="inviteMsg" ng-model="inviteMsg"
class="form-control field" ng-bind-html="inviteMsg"></textarea>
目前,它在文本区域内显示带有所有标签的html。