在 ngTagsInput 中如何显示不同情况下的验证消息?
In ngTagsInput how to show validation message for different cases?
我正在使用 ngTagsInput
Angular 插件来获取多个电子邮件 ID。下面是我的代码:
<form name="contact_us" role="form" novalidate enctype="multipart/form-data">
<div class="form-group">
<label class="control-label" for="from_email">
From
</label>
<tags-input ng-model="contactUs.emails" type="email" id="from_email"
placeholder="From" name="from_email"
allowed-tags-pattern="^[A-Za-z0-9._%+-]+@(?:[A-Za-z0-9-]+.)+[A-Za-z]{2,}"
allow-leftover-text="false" ng-required="true" add-on-space="true">
</tags-input>
<p class="help-block" style="color:red"
ng-show="contact_us.from_email.$invalid && (contact_us.$submitted || contact_us.$dirty)">
Please enter proper email address
</p>
<button type="submit" class="btn btn-default" ng-click="Send(contact_us)">
Send
</button>
</form>
在上面的代码3中添加了如下验证:
- 对于必填字段。
- 字段应仅接受电子邮件 ID。
- 不应允许重复的电子邮件 ID。
以上案例都运行良好。但是,我想根据上述情况之一动态显示错误消息。请帮帮我!!!
要求:
<p class="help-block" style="color:red"
ng-show="contact_us.from_email.$error.required">
email address is required
</p>
对于 pattern & duplicate,我认为没有提供验证标志,你必须自己编写来执行验证。
对于复制品,也许这会有所帮助。
Angularjs - How to check for unique inputs and if there is a duplicate mark both as invalid
ngTagsInput 支持以下属性以捕获更改,它在添加到模型之前触发
on-tag-adding="foo($tag)"
$scope.foo(function(tag){
// look for error
// if found return false
// change the text of tag
tag.text='what ever';
return tag;
})
我正在使用 ngTagsInput
Angular 插件来获取多个电子邮件 ID。下面是我的代码:
<form name="contact_us" role="form" novalidate enctype="multipart/form-data">
<div class="form-group">
<label class="control-label" for="from_email">
From
</label>
<tags-input ng-model="contactUs.emails" type="email" id="from_email"
placeholder="From" name="from_email"
allowed-tags-pattern="^[A-Za-z0-9._%+-]+@(?:[A-Za-z0-9-]+.)+[A-Za-z]{2,}"
allow-leftover-text="false" ng-required="true" add-on-space="true">
</tags-input>
<p class="help-block" style="color:red"
ng-show="contact_us.from_email.$invalid && (contact_us.$submitted || contact_us.$dirty)">
Please enter proper email address
</p>
<button type="submit" class="btn btn-default" ng-click="Send(contact_us)">
Send
</button>
</form>
在上面的代码3中添加了如下验证:
- 对于必填字段。
- 字段应仅接受电子邮件 ID。
- 不应允许重复的电子邮件 ID。
以上案例都运行良好。但是,我想根据上述情况之一动态显示错误消息。请帮帮我!!!
要求:
<p class="help-block" style="color:red"
ng-show="contact_us.from_email.$error.required">
email address is required
</p>
对于 pattern & duplicate,我认为没有提供验证标志,你必须自己编写来执行验证。
对于复制品,也许这会有所帮助。 Angularjs - How to check for unique inputs and if there is a duplicate mark both as invalid
ngTagsInput 支持以下属性以捕获更改,它在添加到模型之前触发
on-tag-adding="foo($tag)"
$scope.foo(function(tag){
// look for error
// if found return false
// change the text of tag
tag.text='what ever';
return tag;
})