NG-隐藏/到NG-隐藏/ NG秀不是** **铬第一触发正常工作中的NG-显示,第二次它反映了就好

2019-10-20 14:23发布

我有一个场景,其中有建议列表编辑输入是存在的,当我在NG-变化的条目出现与相关建议列表,并显示出异常,如果没有数据可用。 但在铬我有一个问题,如果没有搜索(NG-变化)本身名单与输入出现显示“没有任何数据异常”

我有这样的事情:

<div ng-show="show on a condition to edit">
  <input  ng-change="callForservicetoDisplayList()" ng-model="enteredValue"/>
  <ul ng-show="only when callForservicetoDisplayList function returns value">
    <li ng-repeat="outputFromthe callForservicetoDisplayList"></li>
  </ul>
</div>

在这里,从列表本身之前出现在第一编辑铬,第二次工作正常!

Answer 1:

这是一个错误! 所以这应该是固定在最新1.4(1.4.9)。 您使用的是过时的版本

https://github.com/angular/angular.js/issues/13380



文章来源: ng-hide/ng-show within an ng-hide/ng-show not working properly in **chrome** on first trigger, second time it reflects just fine