摘要: $(function () { // 判断整数value是否等于0 jQuery.validator.addMethod("isIntEqZero", function (value, element) { value = parseInt(value); return this.optional(element) || value == 0; ... 阅读全文
posted @ 2016-03-09 16:46 MyCoolDog 阅读(878) 评论(0) 推荐(0) 编辑
摘要: 随笔分类 - Ioc Ioc容器Autofac系列(3)-- 三种注册组件的方式 摘要: 简单来说,所谓注册组件,就是注册类并映射为接口,然后根据接口获取对应类,Autofac将被注册的类称为组件。 虽然可像上篇提到的一次性注册程序集中所有类,但AutoFac使用最多的还是单个注册。这种注册共有三种方式,其中最简单的就是用As方法,例如,ArrayList继承了IEnumerable接口,若将其... 阅读全文
posted @ 2016-03-09 11:40 MyCoolDog 阅读(945) 评论(0) 推荐(0) 编辑