为什么ng-bind-html没有渲染出html?它渲染出一个字符串

时间:2017-01-30 22:06:09

标签: angularjs

我无法将html呈现给通过api调用检索到的视图。以下是我正在使用的代码,还有什么我可以尝试的吗?

我正在使用Angular 1.5

here is a plunker link to my code

var htmlData = '<p><strong>PART TIME MAINTENANCE</strong></p><p>We are currently seeking a person to assist with general maintenance </a>).</strong></p>'
$scope.content = function() {
    return $sce.trustAsHtml(htmlData);
};


p(ng-bind-html="content()")

1 个答案:

答案 0 :(得分:0)

问题不是有角度的,问题是从api返回的html实体。一旦解决了,一切都按预期开始工作。