我有一个表单,我正在使用角度js和bootstrap。验证已全部设置并正常工作,直到我引入typeahead - 选择值时,不会触发验证。
即使从typeahead中选择值,我怎样才能让字段验证?
<div ng-app="myApp" ng-controller="myCtrl">
<form action="" name="myForm">
<input type="text" name="one" ng-model="one" ng-valid-func="validator" />
<div class="warning" ng-show="!myForm.one.$valid">
<i class="icon-warning-sign"></i> One needs to be longer
</div>
<input type="text" name="two" ng-model="two" ng-valid-func="validator" class="typeahead" />
<div class="warning" ng-show="!myForm.two.$valid">
<i class="icon-warning-sign"></i> Two needs to be longer
</div>
</form>
</div>
和..
input.ng-invalid{
background-color: #fdd !important;
}
input.ng-valid{
background-color: #dfd !important;
}
和...
var app = angular.module('myApp', [])
var myCtrl = function($scope){
$scope.one = ""
$scope.two = ""
$scope.validator = function(val){
return val.length > 3
}
}
$(function(){
$('.typeahead').typeahead({
source: ['animal','alphabet','alphabot!','alfalfa']
})
})
app.directive('ngValidFunc', function() {
return {
require: 'ngModel',
link: function(scope, elm, attrs, ctrl) {
ctrl.$parsers.unshift(function(viewValue) {
if (attrs.ngValidFunc && scope[attrs.ngValidFunc] && scope[attrs.ngValidFunc](viewValue, scope, elm, attrs, ctrl)) {
ctrl.$setValidity('custom', true);
} else {
ctrl.$setValidity('custom', false);
}
return elm.val()
});
}
};
});
答案 0 :(得分:3)
像alfrescian所说,AngularJS有typeahead
。
参见 Fiddle 。
仍然需要解决一些问题,但似乎是你想要的
<div ng-app="myApp" ng-controller="myCtrl">
<form action="" name="myForm">
<input type="text" name="one" ng-model="one" ng-valid-func="validator" />
<div class="warning" ng-show="!myForm.one.$valid">
<i class="icon-warning-sign"></i> One needs to be longer
</div>
<input type="text" ng-model="two" ng-valid-func="validator" typeahead="suggestion for suggestion in option($viewValue)"/>
<div class="warning" ng-show="!myForm.two.$valid">
<i class="icon-warning-sign"></i> Two needs to be longer
</div>
</form>
</div>
你的JS
var app = angular.module('myApp', ['ui.bootstrap'])
var myCtrl = function($scope, limitToFilter){
$scope.one = ""
$scope.two = ""
$scope.option = function(value) {
console.log(value);
return limitToFilter($scope.options, 10);
};
$scope.options = ['animal','alphabet','alphabot!','alfalfa'];
$scope.validator = function(val){
return val.length > 3
}
$scope.run = function(value){
console.log(value);
};
}
app.directive('ngValidFunc', function() {
return {
require: 'ngModel',
link: function(scope, elm, attrs, ctrl) {
ctrl.$parsers.unshift(function(viewValue) {
if (attrs.ngValidFunc && scope[attrs.ngValidFunc] && scope[attrs.ngValidFunc](viewValue, scope, elm, attrs, ctrl)) {
ctrl.$setValidity('custom', true);
} else {
ctrl.$setValidity('custom', false);
}
return elm.val()
});
}
};
});
希望它可以帮助你解决问题