所以我基本上希望能够触发一个事件,然后编译一个指令并将其自身插入到 DOM 中的某个位置。目前我有这样的东西
//controller
angular.module('app').controller('MainCtrl', function ($scope, $compile) {
$scope.$on('insertItem',function(ev,attrs){
var el = $compile( "<chart></chart>" )( $scope );
$scope.insertHere = el;
});
});
// directive
angular.module('app')
.directive('chart', function () {
return {
template: '<div>My chart</div>',
restrict: 'E',
link: function postLink(scope, element, attrs) {
element.text('this is a chart');
}
};
});
我能够看到所有我需要的对象“el”,但我无法将它插入到 DOM 中……有什么线索吗?