我有一个指令
app.directive("dir", function($compile, $sce){
return{
restrict: "E",
link: function(scope, element, attr){
scope.$watch('content',function(){
var html = $sce.trustAsHtml(attr.content);
scope.alabala = $compile(html)(scope);
},true);
},
template: "<div ng-bind-html='alabala'></div>",
}
});
控制器:
function MainController($scope, $http, customService, $location, $sce, $compile){
$scope.init = function(){
customService.get().success(function(data) {
var html = $sce.trustAsHtml(data);
$("#dir").attr("content", data);
});
};
}
在我的索引页面上我有:
<div id="div" ng-controller="MainController" class="pull-right span3" ng-init="init()">
<dir id="dir" ></dir>
</div>
我的自定义服务每次返回包含例如
的不同html<button ng-click='click()'>Click me</button>
我想要做的是每次我在我的指令的内容中推送一个不同的值来编译它并将它放在我的html中并从我的控制器处理click函数。因为我是AngularJS的新手,所以我一直在努力解决这个问题。请帮忙。
答案 0 :(得分:26)
您无需与$sce打交道以达到目的。
您可以将HTML
字符串传递给指令。在指令编译之后,它将起作用。
在需要HTML
directive
中
<dir id="dir" content="myVal"></dir>
在控制器myVal
中设置不同的值
$scope.myVal = '<button ng-click=\'buttonClick()\'>I\'m button</button>'; // HTML as string
directive
myApp.directive('dir', function($compile, $parse) {
return {
restrict: 'E',
link: function(scope, element, attr) {
scope.$watch(attr.content, function() {
element.html($parse(attr.content)(scope));
$compile(element.contents())(scope);
}, true);
}
}
})
检查 Demo