标签: javascript angularjs scope
我需要在$ scope.myText中将<br />标记放在控制器中,该怎么做?
<br />
答案 0 :(得分:1)
像$sce.trustAsHtml("<br />")之类的东西应该有用。
$sce.trustAsHtml("<br />")
$sce.trustAsHtml()返回一个可以安全使用ng-bind-html的字符串。你可以在这里阅读更多相关信息
$sce.trustAsHtml()
ng-bind-html
$sce.trustAsHtml vs. ng-bind-html