我有一个非常简化的版本,我正在做的事情可以解决问题。
我有一个简单的directive
。每当您单击一个元素时,它会添加另一个元素。但是,需要首先编译它才能正确呈现它。
我的研究让我$compile
。但是所有的例子都使用了一个复杂的结构,我真的不知道如何在这里应用。
小提琴在这里:http://jsfiddle.net/paulocoelho/fBjbP/1/
JS在这里:
var module = angular.module('testApp', [])
.directive('test', function () {
return {
restrict: 'E',
template: '<p>{{text}}</p>',
scope: {
text: '@text'
},
link:function(scope,element){
$( element ).click(function(){
// TODO: This does not do what it's supposed to :(
$(this).parent().append("<test text='n'></test>");
});
}
};
});
Josh David Miller的解决方案: http://jsfiddle.net/paulocoelho/fBjbP/2/
答案 0 :(得分:254)
你有很多毫无意义的jQuery,但在这种情况下$ compile服务实际上是超级简单:
.directive( 'test', function ( $compile ) {
return {
restrict: 'E',
scope: { text: '@' },
template: '<p ng-click="add()">{{text}}</p>',
controller: function ( $scope, $element ) {
$scope.add = function () {
var el = $compile( "<test text='n'></test>" )( $scope );
$element.parent().append( el );
};
}
};
});
你会注意到我也重构了你的指令,以便遵循一些最佳实践。如果您对这些问题有任何疑问,请与我们联系。
答案 1 :(得分:74)
除了完美的Riceball LEE添加新元素指令
的例子newElement = $compile("<div my-directive='n'></div>")($scope)
$element.parent().append(newElement)
可以使用以下方式向现有元素添加新的属性指令:
假设您希望动态my-directive
添加到span
元素。
template: '<div>Hello <span>World</span></div>'
link: ($scope, $element, $attrs) ->
span = $element.find('span').clone()
span.attr('my-directive', 'my-directive')
span = $compile(span)($scope)
$element.find('span').replaceWith span
希望有所帮助。
答案 2 :(得分:45)
在angularjs上动态添加指令有两种样式:
var newElement = $compile( "<div my-diretive='n'></div>" )( $scope );
$element.parent().append( newElement );
这很难,两天之内让我头疼。
使用“$ compile”会引发严重的递归错误!也许它应该在重新编译元素时忽略当前指令。
$element.$set("myDirective", "expression");
var newElement = $compile( $element )( $scope ); // critical recursive error.
var newElement = angular.copy(element); // the same error too.
$element.replaceWith( newElement );
所以,我必须找到一种方法来调用指令“link”函数。很难获得隐藏在闭包内的有用方法。
compile: (tElement, tAttrs, transclude) ->
links = []
myDirectiveLink = $injector.get('myDirective'+'Directive')[0] #this is the way
links.push myDirectiveLink
myAnotherDirectiveLink = ($scope, $element, attrs) ->
#....
links.push myAnotherDirectiveLink
return (scope, elm, attrs, ctrl) ->
for link in links
link(scope, elm, attrs, ctrl)
现在,它运作良好。
答案 3 :(得分:9)
function addAttr(scope, el, attrName, attrValue) {
el.replaceWith($compile(el.clone().attr(attrName, attrValue))(scope));
}
答案 4 :(得分:5)
Josh David Miller是对的。
PCoelho,如果你想知道幕后的$compile
是什么以及如何从指令生成HTML输出,请看下面
$compile
服务编译包含指令(&#34; test&#34;作为元素)的HTML片段("< test text='n' >< / test >"
)并生成一个函数。然后可以使用范围执行此函数以从指令&#34;中获取&#34; HTML输出。
var compileFunction = $compile("< test text='n' > < / test >");
var HtmlOutputFromDirective = compileFunction($scope);
此处提供完整代码示例的更多详细信息: http://www.learn-angularjs-apps-projects.com/AngularJs/dynamically-add-directives-in-angularjs
答案 5 :(得分:5)
如果您尝试动态添加使用内联template
的指令,则Josh David Miller接受的答案非常有用。但是,如果您的指令利用templateUrl
,他的回答将无效。这对我有用:
.directive('helperModal', [, "$compile", "$timeout", function ($compile, $timeout) {
return {
restrict: 'E',
replace: true,
scope: {},
templateUrl: "app/views/modal.html",
link: function (scope, element, attrs) {
scope.modalTitle = attrs.modaltitle;
scope.modalContentDirective = attrs.modalcontentdirective;
},
controller: function ($scope, $element, $attrs) {
if ($attrs.modalcontentdirective != undefined && $attrs.modalcontentdirective != '') {
var el = $compile($attrs.modalcontentdirective)($scope);
$timeout(function () {
$scope.$digest();
$element.find('.modal-body').append(el);
}, 0);
}
}
}
}]);
答案 6 :(得分:4)
受到许多先前答案的启发,我提出了以下“stroman”指令,该指令将替换为任何其他指令。
app.directive('stroman', function($compile) {
return {
link: function(scope, el, attrName) {
var newElem = angular.element('<div></div>');
// Copying all of the attributes
for (let prop in attrName.$attr) {
newElem.attr(prop, attrName[prop]);
}
el.replaceWith($compile(newElem)(scope)); // Replacing
}
};
});
重要提示:注册要与restrict: 'C'
一起使用的指令。像这样:
app.directive('my-directive', function() {
return {
restrict: 'C',
template: 'Hi there',
};
});
您可以这样使用:
<stroman class="my-directive other-class" randomProperty="8"></stroman>
要得到这个:
<div class="my-directive other-class" randomProperty="8">Hi there</div>
Protip。如果您不想使用基于类的指令,那么您可以将'<div></div>'
更改为您喜欢的内容。例如。具有固定属性,该属性包含所需指令的名称而不是class
。