search

Home  >  Q&A  >  body text

javascript - Angular.js动态加载html无法解析

app.js:

$http.get(article.html).success(function(data) {
    $scope.content = data;
});

index.html:

<article>
    {{content}}
</article>

article.html:

<h1>Hello World</h1>

此时在浏览器中显示出的是<h1>Hello World</h1>而不是我希望的Hello World。

请问是为什么,如何解决?

巴扎黑巴扎黑2847 days ago285

reply all(2)I'll reply

  • PHP中文网

    PHP中文网2017-04-10 14:34:22

    使用指令 ng-bind-html http://www.ngnice.com/docs/api/ng/directive/ngBindHtml

    reply
    0
  • 巴扎黑

    巴扎黑2017-04-10 14:34:22

    $sce.trustAsHtml以前用这个也行

    reply
    0
  • Cancelreply