gpt4 book ai didi

angularjs - angular js中的条件ng模式

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

有没有办法在angularjs中实现条件ng模式

ng-pattern="(myForm.exipration.$dirty ? ('/^\d{2}[/]\d{4}$/') : '')"

我尝试了以上,但没有帮助。

最佳答案

标记

<input ... ng-pattern="handlePatternPassword">

Controller

$scope.handlePatternPassword = (function() {
var regex = /^[A-Za-z0-9!@#$%^&*()_]{4,20}$/;
return {
test: function(value) {
if ($scope.user.isLogged) {
return (value.length > 0) ? regex.test(value) : true;
} else {
return regex.test(value);
}
}
};
})();

https://stackoverflow.com/a/18984874/4640499

关于angularjs - angular js中的条件ng模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33832062/

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