Angularjs如何逃避特殊字符

时间:2015-07-03 15:52:18

标签: angularjs

在下面的代码中如何转义特殊字符以显示html?

$scope.template_html='\u003cdiv class\u003d\"modal-body add_ticket\" id\u003d\"mymodal\"\u003e\r\n'

模板

<div ng-bind-html="template_html"></div>

1 个答案:

答案 0 :(得分:2)

在控制器中拨打decodeURIComponent

> decodeURIComponent('\u003cdiv class\u003d\"modal-body \" id\u003d\"mymodal\"\u003e\r\n')"
<div class="modal-body" id="mymodal">