最佳答案
我对我正在做的事情有一个非常简单的解释,可以让大家理解这个问题。
我有一个简单的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/ < / p >