gpt4 book ai didi

带有 ng-if 的正则表达式

转载 作者:行者123 更新时间:2023-12-02 04:25:43 25 4
gpt4 key购买 nike

  <div class="row" ng-if="MyTest.Item.MyPassword != MyTest.Item.ConfirmPassword">
<div class="col-md-12">
<p class="red-color"> Password must be between 4 and 8 digits long and include at least one numeric digit And Passwords must match! </p>
</div>
</div>

当“Mypassword !=ConfirmPassword”并且正则表达式 '/^(?=.*\d).{4,8}$/' 未满足密码字段时,我需要显示上述消息。如何才能我将正则表达式与 ng-if 一起使用?任何帮助将不胜感激。

最佳答案

您的看法:

ng-if="isValid()"

在你的 Controller 中:

$scope.isValid = function(){
return MyTest.Item.MyPassword == MyTest.Item.ConfirmPassword
&& yourRegexp.test(MyTest.Item.MyPassword);
}

关于带有 ng-if 的正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27321795/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com