在下面的代码中如何转义特殊字符以显示html?
$scope.template_html='\u003cdiv class\u003d\"modal-body add_ticket\" id\u003d\"mymodal\"\u003e\r\n'
模板
<div ng-bind-html="template_html"></div>
答案 0 :(得分:2)
在控制器中拨打decodeURIComponent。
> decodeURIComponent('\u003cdiv class\u003d\"modal-body \" id\u003d\"mymodal\"\u003e\r\n')"
<div class="modal-body" id="mymodal">