为了账号安全,请及时绑定邮箱和手机立即绑定

验证用户输入的字符串是否为日期时间

标签:
AngularJS

在angularjs中,想在文本框中,验证用户输入的字符串是否为日期时间。

刚开始时,Insus.NET想到的是正则,这只是验证到日期与时间的格式是否正确而已,而对于2月最后一天或是30或是31号,还是无能为力。

因此,Insus.NET想使用angularjs的自定义指令来验证解决此问题。

在ASP.NET MVC的项目中,创建一个控制器,并创建一个Action:

 

控制器源代码:

using System;using System.Collections.Generic;using System.Globalization;using System.Linq;using System.Web;using System.Web.Mvc;namespace Insus.NET.Controllers{    public class CommonsController : Controller    {        public JsonResult ValidateDate(string date)        {            object _Data;            DateTime dt;            if (DateTime.TryParse(date, out dt))            {                _Data = new { result = true };            }            else            {                _Data = new { result = false };            }            return new JsonResult            {                Data = _Data,                ContentEncoding = System.Text.Encoding.UTF8,                JsonRequestBehavior = JsonRequestBehavior.AllowGet            };        }    }}

Source Code


接下来,你可以写Directive了,那是一个js文件:



validateDate的angularjs代码:

airExpressApp.directive('validateDate', function ($http, $q) {    return {        restrict: 'AE',        require: 'ngModel',        link: function ($scope, element, attributes, ngModelController) {            ngModelController.$asyncValidators.dataValid = function (modelValue, viewValue) {                var deferred = $q.defer();                var obj = {};                obj.date = modelValue;                $http({                    method: 'POST',                    url: '/Commons/ValidateDate',                    dataType: 'json',                    headers: {                        'Content-Type': 'application/json; charset=utf-8'                    },                    data: JSON.stringify(obj),                }).then(function (response) {                    if (ngModelController.$isEmpty(modelValue) || response.data.result) {                        deferred.resolve();                    } else {                        deferred.reject();                    }                });                return deferred.promise;            };        }    }});

Source Code


html的input应用此angularjs的属性:


 演示:

 

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消