6

見てくださいプランカー。

http://plnkr.co/edit/DuTFYbLVbPkCIvRznYjG?p=preview

ここで、ng-pattern regEx は入力テキスト フィールドに適用されません。

必要な検証のみが適切に適用されている場合。

HTML:

<body ng-controller="tableController">
    <form name="test">
        <div ng-repeat="model in models">
            <span ng-bind="model.caption"></span>
            <div ng-form name="frm{{$index}}">
                <input name="input{{$index}}"
                    ng-model="data[model.name]"
                    ng-disabled="model.isDisabled"
                    minlength="{{model.minlength}}"
                    maxlength="{{model.maxlength}}"
                    ng-show="model.isShow"
                    ng-pattern="model.pattern"
                    ng-required="true" />
                <br />
                {{data[model.name]}}
            </div>
        </div>
    </form>
    <br />
    <br />
</body>

JS:

angular.module("app", []).controller("tableController", function ($scope) {
        $scope.regEx = "/^\\d+$/";
        $scope.data = {};
        $scope.data.one = 234;
        $scope.data.two = 32432;
        $scope.models = [
            { name: "one", caption: "cOne", isDisabled: false, isShow: true, minlength: 2, maxlength: 10, pattern: "/^\d+$/" },
            { name: "two", caption: "cTwo", isDisabled: false, isShow: true, minlength: 2, maxlength: 5, pattern: "/^\d+$/" },
        ];
            });

なにか提案を ??

-ありがとう

4

1 に答える 1

12

正規表現の割り当てを以下に変更します。正規表現である必要があるためです。二重引用符で囲むと、文字列になります。

$scope.regEx = /^\d+$/;
于 2014-03-24T14:42:36.790 に答える