I am trying to use below date (mm/dd/yyyy) validation pattern using ng-pattern in view.
ng-pattern="/^(\d{4})-(\d{2})-(\d{2})$/"
As soon as I start typing the date the validation error appears and stays even after having valid date such as 10/15/1988
I tried passing it through controller using var (as shown below) but behaves the same:
In Controller:
$scope.myPattern = "/^(\d{4})-(\d{2})-(\d{2})$/";
In View:
ng-pattern="{{myPattern}}"
Note: This both approach not working only in IE9
I am trying to use below date (mm/dd/yyyy) validation pattern using ng-pattern in view.
ng-pattern="/^(\d{4})-(\d{2})-(\d{2})$/"
As soon as I start typing the date the validation error appears and stays even after having valid date such as 10/15/1988
I tried passing it through controller using var (as shown below) but behaves the same:
In Controller:
$scope.myPattern = "/^(\d{4})-(\d{2})-(\d{2})$/";
In View:
ng-pattern="{{myPattern}}"
Note: This both approach not working only in IE9
Share asked Apr 8, 2014 at 19:08 seUserseUser 1,1032 gold badges11 silver badges22 bronze badges 04 Answers
Reset to default 5How about:
/^((\d{4})-(\d{2})-(\d{2})|(\d{2})\/(\d{2})\/(\d{4}))$/
This will work with both dd/mm/yyyy and yyyy-mm-dd
/^((\d{4})-(\d{2})-(\d{2})|(\d{2})\/(\d{2})\/(\d{4}))$/.test('04/04/1974')
true
/^((\d{4})-(\d{2})-(\d{2})|(\d{2})\/(\d{2})\/(\d{4}))$/.test('1974-04-04')
true
Your Regex pattern should be ng-pattern="/^(\d{2})\/(\d{2})\/(\d{4})$/"
. This would match dates that look like mm/dd/yyyy
The solution i found for my problem was similar. The regex bellow accepts any date in the format dd/mm/yyyy, whit the year ranging from 1990 to 2020.
<input name="birthDate"
ng-pattern='/^(0?[1-9]|[12][0-9]|3[01])\/(0?[1-9]|1[012])\/(19\d\d|20[12]\d)$/' ng-model="newUser.birthDate" type="text">
It's because you didn't bind your ng-pattern to a variable in the controller in the proper Angular way ;)
Instead of: $scope.myPattern = "/^(\d{4})-(\d{2})-(\d{2})$/";
It should be: $scope.myPattern = new RegExp(/^(\d{4})-(\d{2})-(\d{2})$/);
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743687430a4490382.html
评论列表(0条)