我有一个元素,我想将html绑定到它。
<div ng-bind-html="details" upper></div>
有效。现在,除此之外,我还有一个绑定到绑定html的指令:
$scope.details = 'Success! <a href="#/details/12" upper>details</a>'
但是带有div和anchor的指令upper
不会评估。我如何使它工作?
答案 0 :(得分:183)
我也遇到了这个问题,在网上搜索了几个小时后,我读了@ Chandermani的评论,这被证明是解决方案。 你需要打电话给编译&#39;这种模式的指令:
<div compile="details"></div>
.directive('compile', ['$compile', function ($compile) {
return function(scope, element, attrs) {
scope.$watch(
function(scope) {
// watch the 'compile' expression for changes
return scope.$eval(attrs.compile);
},
function(value) {
// when the 'compile' expression changes
// assign it into the current DOM
element.html(value);
// compile the new DOM and link it to the current
// scope.
// NOTE: we only compile .childNodes so that
// we don't get into infinite loop compiling ourselves
$compile(element.contents())(scope);
}
);
};
}])
您可以看到有效的fiddle of it here
答案 1 :(得分:34)
感谢vkammerer的好回答。我建议的一个优化是在编译运行一次后不看。 watch表达式中的$ eval可能会影响性能。
angular.module('vkApp')
.directive('compile', ['$compile', function ($compile) {
return function(scope, element, attrs) {
var ensureCompileRunsOnce = scope.$watch(
function(scope) {
// watch the 'compile' expression for changes
return scope.$eval(attrs.compile);
},
function(value) {
// when the 'compile' expression changes
// assign it into the current DOM
element.html(value);
// compile the new DOM and link it to the current
// scope.
// NOTE: we only compile .childNodes so that
// we don't get into infinite loop compiling ourselves
$compile(element.contents())(scope);
// Use un-watch feature to ensure compilation happens only once.
ensureCompileRunsOnce();
}
);
};
}]);
答案 2 :(得分:26)
添加此指令angular-bind-html-compile
.directive('bindHtmlCompile', ['$compile', function ($compile) {
return {
restrict: 'A',
link: function (scope, element, attrs) {
scope.$watch(function () {
return scope.$eval(attrs.bindHtmlCompile);
}, function (value) {
// Incase value is a TrustedValueHolderType, sometimes it
// needs to be explicitly called into a string in order to
// get the HTML string.
element.html(value && value.toString());
// If scope is provided use it, otherwise use parent scope
var compileScope = scope;
if (attrs.bindHtmlScope) {
compileScope = scope.$eval(attrs.bindHtmlScope);
}
$compile(element.contents())(compileScope);
});
}
};
}]);
像这样使用它:
<div bind-html-compile="data.content"></div>
非常简单:)
答案 3 :(得分:13)
不幸的是,我没有足够的声誉来发表评论。
我无法让这个工作多年。我修改了我的ng-bind-html
代码以使用此自定义指令,但我无法删除ng-bind-html工作所需的$scope.html = $sce.trustAsHtml($scope.html)
。一旦我删除它,编译功能就开始工作了。
答案 4 :(得分:6)
对于任何处理已经通过$sce.trustAsHtml
运行的内容的人来说,我必须采取不同的方式
function(scope, element, attrs) {
var ensureCompileRunsOnce = scope.$watch(function(scope) {
return $sce.parseAsHtml(attrs.compile)(scope);
},
function(value) {
// when the parsed expression changes assign it into the current DOM
element.html(value);
// compile the new DOM and link it to the current scope.
$compile(element.contents())(scope);
// Use un-watch feature to ensure compilation happens only once.
ensureCompileRunsOnce();
});
}
这只是指令的link
部分,因为我使用的是不同的布局。您需要注入$sce
服务以及$compile
。
答案 5 :(得分:-2)
我发现的最佳解决方案!我复制了它,它完全按照我的需要工作。谢谢,谢谢,谢谢......
在指令链接功能中我有
app.directive('element',function($compile){
.
.
var addXml = function(){
var el = $compile('<xml-definitions definitions="definitions" />')($scope);
$scope.renderingElement = el.html();
}
.
.
并在指令模板中:
<span compile="renderingElement"></span>