我看了很多,但我要么找不到答案,要么我不明白。一个具体的例子将赢得投票=)
这是我尝试过的:
// My magic HTML string function.
function htmlString (str) {
return "<h1>" + str + "</h1>";
}
function Ctrl ($scope, $compile) {
$scope.htmlString = htmlString;
}
Ctrl.$inject = ["$scope", "$compile"];
那不起作用。
我也尝试过它作为指令:
// My magic HTML string function.
function htmlString (str) {
return "<h1>" + str + "</h1>";
}
angular.module("myApp.directives", [])
.directive("htmlString", function () {
return {
restrict: "E",
scope: { content: "@" },
template: "{{ htmlStr(content) }}"
}
});
... and in my HTML ...
<html-string content="foo"></html-string>
帮助?
注意的
除了别人之外,我看过这些,但是无法使它发挥作用。
答案 0 :(得分:89)
请看一下此链接中的示例:
http://docs.angularjs.org/api/ngSanitize.$sanitize
基本上,angular有一个将html插入页面的指令。在您的情况下,您可以使用ng-bind-html指令插入html,如下所示:
如果您已经完成了所有这些:
// My magic HTML string function.
function htmlString (str) {
return "<h1>" + str + "</h1>";
}
function Ctrl ($scope) {
var str = "HELLO!";
$scope.htmlString = htmlString(str);
}
Ctrl.$inject = ["$scope"];
然后在你控制器范围内的html中,你可以
<div ng-bind-html="htmlString"></div>
答案 1 :(得分:15)
您也可以使用$sce.trustAsHtml('"<h1>" + str + "</h1>"')
,如果您想了解更多详情,请参阅$sce