angular.js - Angular 像这种重复判断的表达式 有什么好的解决办法吗?~
巴扎黑
巴扎黑 2017-05-15 17:12:13
0
2
556

巴扎黑
巴扎黑

reply all(2)
phpcn_u1582

It won’t have much impact if you write it like this now. If your judgment expression is too long, you can consider writing it as a function and calling the function directly

For example:

$scope.someFun(){
    return $scope.submitted && $scope.form.$invalid;
}


ng-disabled="someFun()"
Ty80

getter defines a submitDisabled, and then performs rule determination internally.

get submitDisabled() {
  return submitted && form.$invalid
}
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template