当使用layui的验证规则,比如手机,<inputtype="text"name="userName"lay-verify="phone"placeholder=""autocomplete="off"class="layui-input">此时,该输入框可为空,表单就提交不了。可自定义验证规则,即为空时,不校验,不为空时,要校验。自定义的规则如下:admin.v_email=func
分类:
其他好文 时间:
2020-05-22 09:51:52
阅读次数:
66
Auto Close Tag Auto Complete Tag Auto Rename Tag Bootstrap 3 Snippets Bootstrap 4, Font awesome 4, Font Awesome 5 Free & Pro snippets Bracket Pair Col ...
分类:
其他好文 时间:
2020-05-20 20:06:46
阅读次数:
101
本文译自 A Complete Guide to Flexbox这里,针对本文介绍的属性列个提纲: 伸缩容器属性: display flex-direction flex-wrap flex-flow justify-content align-items align-content 伸缩项目属性: ...
分类:
其他好文 时间:
2020-05-19 20:10:17
阅读次数:
63
高德地图使用 api地址 https://lbs.amap.com/api/javascript api/summary 高德地图有提供公共接口,查看api,能实现一些项目基本需求效果 基本使用 注册帐号 使用高德api,首先需要注册帐号,并且申请key(以个人或者公司的名字),获取key后才能使用 ...
写在前面:缓存IO又称为标准IO,大多数文件系统的默认IO操作都是缓存IO。在LINUX的缓存IO机制中,操作系统会将IO的数据缓存在文件系统的页缓存(page cache)中,也就是说,数据会先拷贝到操作系统内核的缓冲区中,然后才会从操作系统的内核缓冲区拷贝到应用程序的地址空间。 网络IO的本质是 ...
分类:
其他好文 时间:
2020-05-16 00:51:58
阅读次数:
82
Unix does not have a command specifically for renaming files. Instead, the mv command is used both to change the name of a file and to move a file int ...
分类:
其他好文 时间:
2020-05-15 09:41:05
阅读次数:
60
Visual Studio is waiting for an operation to complete. If you regularly encounter this delay during normal usage please report this problem to Microso ...
分类:
其他好文 时间:
2020-05-14 12:51:58
阅读次数:
108
wx.request({ url: 'http://127.0.0.1:8000/api/login/', method: 'POST', data: {phone:this.data.phone,code:this.data.code}, success: (result) => { consol ...
分类:
微信 时间:
2020-05-12 13:39:19
阅读次数:
143
在《阿里巴巴java开发手册》中指出了线程资源必须通过线程池提供,不允许在应用中自行显示的创建线程,这样一方面是线程的创建更加规范,可以合理控制开辟线程的数量;另一方面线程的细节管理交给线程池处理,优化了资源的开销。而线程池不允许使用Executors去创建,而要通过ThreadPoolExecut ...
分类:
编程语言 时间:
2020-05-10 21:08:38
阅读次数:
63
实例 GetRows本例演示如何使用 GetRows 方法。 Recordset 对象 ADO Recordset 对象用于容纳一个来自数据库表的记录集。一个 Recordset 对象由记录和列(字段)组成。 在 ADO 中,此对象是最重要且最常用于对数据库的数据进行操作的对象。 ProgID se ...
分类:
其他好文 时间:
2020-05-10 17:10:24
阅读次数:
49