码迷,mamicode.com
首页 > 其他好文 > 详细

验证一个值是否已经存在数据表中

时间:2017-05-29 10:59:19      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:记录   type   pre   url   count   tle   home   validate   source   

前几天Insus.NET有写过一篇《angularjs自定义指令Directivehttp://www.cnblogs.com/insus/p/6908815.html

仅是在程序中指定某些来值来匹配。

为你的数据表准备一个存储过程:
技术分享

判断是否已经存在此值。只需写SELECT语句。如果没有记录返回,它将返回null。


有ASP.NET MVC程序中,创建model:
技术分享

 

还要创建一个实体方法,是程序与数据协作与沟通的:
技术分享

 
程序逻辑部分,还要写一个接口,供前端angularjs去读取:
技术分享

返回给前端exists布尔值。

 Ok,进行到前端angularjs时,写自定义指令Directive:
技术分享

 

技术分享
airExpressApp.directive(‘validateCountry‘, function ($http, $q) {
    return {
        restrict: ‘AE‘,
        require: ‘ngModel‘,
        link: function ($scope, element, attributes, ngModelController) {
            ngModelController.$asyncValidators.countryExists = function (modelValue, viewValue) {
                var deferred = $q.defer();

                var obj = {};
                obj.Country_EN = modelValue;
                $http({
                    method: ‘POST‘,
                    url: ‘/Code/CountryByKey‘,
                    dataType: ‘json‘,
                    headers: {
                        ‘Content-Type‘: ‘application/json; charset=utf-8‘
                    },
                    data: JSON.stringify(obj),
                }).then(function (response) {
                    if (response.data.exists) {
                        deferred.resolve();
                    } else {
                        deferred.reject();
                    }
                });
                return deferred.promise;
            };
        }
    }
});
Source Code

 
文本框设置自定义指令属性:
技术分享

 

实时演示:
技术分享

 

验证一个值是否已经存在数据表中

标签:记录   type   pre   url   count   tle   home   validate   source   

原文地址:http://www.cnblogs.com/insus/p/6917240.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!