我有一个将元素附加到正文的指令。此元素上有一个ng-controller,但是当元素附加到正文时,控制器不会被实例化。使用控制器追加元素的最佳方法是什么,以便每次追加控制器时都会对其进行实例化。注意:我还必须在某个时候删除元素。这是最好的方法吗?
<div my-directive>
<!--this element will be removed by the directive and then appended to the body-->
<div ng-controller="MyController"></div>
</div>