Can I put ng-if directive on an element which also binds to a controller

隐身守侯 提交于 2019-12-18 08:27:30

问题


I was wondering in case I have a controller and ng-if directive on the same element as in

<div foo ng-if=“ctrl.visible”>You can see me</div>

and a controller, something like

NgController(selector: ‘[foo]’,….)
class FooController { var visible = true; }

Should I see the text “You can see me" or not?


回答1:


Here's the answer. I would not see the text. Basically, ng-if is a transcluding directive which means that the entire element is ripped out of the DOM and no other directives are instantiated until ng-if instantiates the Block, but that never happens because ctrl.visible is never even published on the scope, so it's always falsy... chicken and egg problem. Actually, it can be even worse: ctrl could be the parent controller, and if that controller happen to have visible field it can cause unpredictable behavior.



来源:https://stackoverflow.com/questions/22314313/can-i-put-ng-if-directive-on-an-element-which-also-binds-to-a-controller

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!