gpt4 book ai didi

javascript - 使用插值在输入上动态生成验证属性

转载 作者:行者123 更新时间:2023-11-28 01:09:48 25 4
gpt4 key购买 nike

编辑:从 Angular version: 1.3.0-beta.12 开始,这个问题不再相关。您现在可以解析 ng-minlength 和 ng-maxlength 动态值。请参阅:https://github.com/angular/angular.js/issues/5319

我的问题非常简单:我需要使用插值动态创建输入验证(例如 ng-minlength )。

这样做时,我遇到了一些专门为 ng-minlength 生成验证属性的问题。和ng-maxlength 。我认为这是因为他们只采用常量?

下面你可以看到我的代码,我通过outerForm使用包装器的原因是我无法使用插值动态生成输入元素的名称属性,并且我必须将每组重复输入包装在 ngForm directive 中。并将它们嵌套在外部表单元素中。

再说一次,问题出在属性 ng-minlength="field.ValidationAttributes['data-val-length-min']" 上。未正确设置。

当我使用 {{field.ValidationAttributes['data-val-length-min']}} 直接打印值时该值显示正确。

我是否必须创建一个指令来解析我的信息,我是否需要创建自己的最小/最大验证,或者我只是遇到语法错误?

<form name="outerForm">
<div ng-repeat="field in logEntry.StringValues">
<ng-form name="innerForm">
<input type="text" name="foo" ng-model="item.foo" ng-minlength="field.ValidationAttributes['data-val-length-min']" required/>
<span ng-show="innerForm.foo.$error.required">required</span>
<span ng-show="innerForm.foo.$error.minlength">to short</span>
</ng-form>
</div>
</form>

最佳答案

您好,您可以使用 double {} 来插入动态验证规则,请参阅此处:http://jsbin.com/xayiro/1/

如果你可以发布你的 field.ValidationAttributes 模型,我可以更新 jsbin。

HTML:

 <ng-form name="innerForm">
<input type="text" name="foo" ng-model="item.foo" ng-minlength="{{validation.minlength}}" required/>
<span ng-show="innerForm.foo.$error.required">required</span>
<span ng-show="innerForm.foo.$error.minlength">to short</span>
</ng-form>

JS:

 $scope.validation= {

maxlength:20,
minlength:3
};

关于javascript - 使用插值在输入上动态生成验证属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24604893/

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