如何使用ng-pattern验证此正则表达式

时间:2018-01-30 13:52:06

标签: javascript angularjs regex angularjs-directive

我需要在卡号中应用验证。所以我希望下面的输入如果有效则显示为true,如果它符合排除模式的任何数字则为false。 我一直在努力,但总是把我弄错了

mercadopago的api返回以下排除模式并使用此格式

"^(400276|400615|402914|404625)"

控制器

$scope.patron='^(400276|400615|402914|404625)';

HTML

  <input type="number"
           id="numeroTarjeta"
           name="numeroTarjeta"
           required
           ng-pattern='patron'                                 
           ng-model="$parent.numeroTarjeta"/>

    input valid? = {{formulario.numeroTarjeta.$valid}}

0 个答案:

没有答案