情况:
我有一个发送电子邮件的角应用程序。 有一个包含三个字段的表单: 地址 - 主题 - 文本。
对于地址字段,我使用了角度ui-select。
一切正常,除了地址栏上的验证(主题和文字验证工作正常)。
修改
此错误已从版本0.16.1修复。正如@yishaiz所指出的那样。
所以这个问题及其相关解决方案是指ui-select版本< 0.16.1。
代码:
HTML:
<form name="emailForm" ng-submit="submitForm(emailForm.$valid)">
<div class="row form-group">
<label class="col-sm-2 control-label">To: </label>
<div class="col-sm-10">
<ui-select multiple ng-model="database_people.selectedPeople" theme="select2" ng-disabled="disabled" style="width:100%">
<ui-select-match placeholder="Select person...">{{$item.name}} < {{$item.value}} ></ui-select-match>
<ui-select-choices repeat="person2 in list_people | filter: {name: $select.search.name, value: $select.search.value, db_data_type_id: 5}">
<div ng-bind-html="person2.name | highlight: $select.search"></div>
<small>
email: <span ng-bind-html="''+person2.value | highlight: $select.search"></span>
</small>
</ui-select-choices>
</ui-select>
</div>
</div>
<div class="col-sm-8">
<button type="submit" class="btn btn-primary">Send</button>
</div>
</form>
ANGULARJS:
$scope.submitForm = function(isValid)
{
if (isValid) {
alert('valid');
}
else {
alert('not valid')
}
};
PLUNKER:
http://plnkr.co/edit/MYW7SM9c9anH6RTomfRG?p=preview
正如您所见,ui-select是必需的,但表单被解析为有效。
问题(S):
如何制作所需的ui-select倍数?
答案 0 :(得分:11)
由于角度为#1.3,这样做的角度方法是创建自定义(验证)指令。
指令:
angular.module('myApp').directive('requireMultiple', function () {
return {
require: 'ngModel',
link: function postLink(scope, element, attrs, ngModel) {
ngModel.$validators.required = function (value) {
return angular.isArray(value) && value.length > 0;
};
}
};
});
代码变为:
<ui-select name="test"
multiple
require-multiple
ng-model="database_people.selectedPeople" ...>
<ui-select-match placeholder="Select person...">...
</ui-select-match>
<ui-select-choices ...>
...
</ui-select-choices>
</ui-select>
PS :如果验证失败,您还可以使用ng-messages正确显示错误。例如:
<div ng-messages="emailForm.test.$error" >
<p ng-message="required">Custom message here</p>
</div>
答案 1 :(得分:5)
这是一个有效的Plunker。
我改变了这一行:
<form name="emailForm" ng-submit="submitForm(multipleDemo.selectedPeople.length > 0)">
它没有使用$ valid格式,这是我想你最想做的。
我尝试使用此处列出的推荐方式https://docs.angularjs.org/api/ng/directive/form
<form name="emailForm" ng-submit="submitForm(emailForm.test.$valid)">
...
<ui-select multiple required ng-model="multipleDemo.selectedPeople" theme="select2" ng-disabled="disabled" style="width: 800px;" name=test>
但它没有用。
我想知道问题是否由于multipleDemo.selectedPeople总是有效,即使它是一个空数组。
编辑:要验证多个字段,您可以执行此操作
<form name="emailForm" ng-submit="submitForm()">
在控制器中
$scope.submitForm = function()
{
var valid = true;
if ($scope.multipleDemo.selectedPeople.length === 0) {
valid = false;
}
// Followed by tests on other fields
if (valid) {
alert('valid');
}
else {
alert('not valid')
}
};
答案 2 :(得分:1)
试试这个: 如果ng-模型的长度,即&#39;存储&#39;是&#39; 0&#39; 0然后显示错误消息,您还可以使用表单form_name显示错误消息。$ submit。这是处理多个选择所需字段的简单方法。
<form name="myform" ng-submit="!storage.length>0 && functionname()">
<div class="form-group">
<ui-select multiple ng-model="storage" name="weekdays">
<ui-select-match>
{{$item.name}}
</ui-select-match>
<ui-select-choices>
{{weekday.name}}
</ui-select-choices>
</ui-select>
<div ng-show="myform.$submitted">
<div ng-show="!storage.length>0" >
<span style="color:red;">Storage is required</span>
</div>
</div>
</div>
<button type="submit">Click</button>
</form>
答案 3 :(得分:1)