angular js判断分类名是否重复。请问报http:404是什么原因呢?

angular js判断分类名是否重复。请问报http:404是什么原因呢?

findByCategory:function(category,successCall,errorCall){  HttpService.send({method: 'GET',url: '/workType/category' + category},successCall,errorCall);}


mmsDirectives.directive('categoryValidation', ['WorkTypeService', function(WorkTypeService) {    return {        require: 'ngModel',        link: function(scope, elm, attrs, ctrl) {            ctrl.$parsers.unshift(function(viewValue) {                if(viewValue) {                    WorkTypeService.findByCategory(viewValue, function(workTypes) {                        if(_.isEmpty(workTypes) || workTypes.category== attrs.categoryValidation) {                            ctrl.$setValidity('category', true);                        } else {                            ctrl.$setValidity('category', false);                        }                    });                }                return viewValue;            });        }    };}]);


holdtom
浏览 642回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

AngularJS