比方說,我有這個在我的HTML:AngularJS指令使元素加倍?
<div my-doubling-directive>
... Lots of children here ...
</div>
我的指令運行後我想
... Lots of children here ...
... Lots of children here ...
所以基本上翻倍的輸出,而不是離開的div指令是。我想我需要某種類型的鏈接方法transclude,但我卡住了。我已經看到了另一個通過過濾器實現這個功能的例子,但我現在將它作爲自定義指令的學習示例。
使用指令transclusion可能是我需要藉此下一步,使其動態多少次,最簡單的方法 – pixelbits