javascript - Angular.js动态加载html无法解析
巴扎黑
巴扎黑 2017-04-10 14:32:22
0
2
286

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。

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

巴扎黑
巴扎黑

reply all(2)
Ty80

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

巴扎黑

$sce.trustAsHtml以前用这个也行

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template