Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.7k views
in Technique[技术] by (71.8m points)

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

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?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...