我有一个ng-if
,如果它评估为 TRUE,我希望它调用ng-show="someMethod()"
你会说最好的方法是什么?
我应该调用我的ng-if
then 使用 anng-init="someMethod()"
然后在 someMethod() 中以某种方式应用模拟ng-show
吗?
HTML:
<div ng-repeat="(key,item) in foodOptions" ng-class={hidden : item.type != currentSection.type}" >
然后我想调用一个 ng-if 来调用一个特定的条件,比如ng-if="item.type === 'pizza'"
- 这应该调用一个 ng-show="someMethod()" 它将过滤页面上可用的下拉列表等。