如何应用angularjs(ng-show)的变化?

前端之家收集整理的这篇文章主要介绍了如何应用angularjs(ng-show)的变化?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有表格
<form ng-controller="SessionController" name="login_form">
  <div class="hide" ng-show='invalid_credentials'>Invalid email/pass</div>
  <input type="submit" value="Login" ng-click='login()'>
</form>

控制器:

utApp.controller('SessionController',($scope,$cookieStore,ClientService) ->
  $scope.login = ->
    ...
    if something
      $scope.invalid_credentials = true
      return

在某些情况下,$scope.invalid_credentials设置为true,但没有显示错误消息的div.怎么展示它?

Angular不会重新检查invalid_credentials变量的值.使用函数作为ng-show参数应该有效.
原文链接:https://www.f2er.com/angularjs/140328.html

猜你在找的Angularjs相关文章