ng-click not working with ng-if

后端 未结 4 1850
抹茶落季
抹茶落季 2021-02-06 01:38

Why does the second button not work, when ng-if is used?

I want to realize a button that is present only when the model value is set / not \"\"/ not nul

相关标签:
4条回答
  • 2021-02-06 01:48

    It doesn't work because ng-if is creating a new scope and interpreting your blub = 'yyyy' as defining a new local variable in the new scope. You can test this by putting the second button to:

    <button ng-click="$parent.blub = 'yyyy'" ng-if="blub.length">Y</button>
    

    However $parent is an ugly feature.

    0 讨论(0)
  • 2021-02-06 01:48

    The button doesn't work because of the nested scope created by ng-if. The blub bound to the second button is not the same blub that's bound to the first one.

    You can use ng-show instead of ng-if, since it uses its parent's scope, but that's just avoiding the problem instead of solving it. Read about nested scopes so you can understand what actually happened.

    Also, check this out: fiddle

    0 讨论(0)
  • 2021-02-06 02:02

    Use ng-show Instead of ng-if. That should work.

    Fiddle

    0 讨论(0)
  • 2021-02-06 02:05

    Try putting a magic dot on the variable

    <input type="text" ng-model="bl.ub"/>
    <br/>
    <button ng-click="bl.ub = 'xxxx'">X</button>
    <br/>
    <button ng-click="bl.ub = 'yyyy'" ng-if="bl.ub.length">Y</button>
    

    jsfiddle

    0 讨论(0)
提交回复
热议问题