正则表达式的工具类,目前包括文本长度、手机号、邮箱、特殊字符、html标签、url地址格式、中文、英文、为空、数字,提供了jquery和Dom的使用方式,依赖于jquery 有三种使用方式,分别为标签、jQuery和Dom 标签需要为标签添加verify和onverify属性,verify为正则判断 ...
分类:
编程语言 时间:
2020-03-06 12:59:39
阅读次数:
89
案例代码: #定义模型 class BookInfo(db.Model): #设置表名 __tablename__ = 'bookinfo' #设置为主键之后,自动自增长 id = db.Column(db.Integer,primary_key=True) name = db.Column(db. ...
分类:
其他好文 时间:
2020-03-06 10:36:52
阅读次数:
49
本章介绍SpringBoot与JPA整合 整合流程 1、新建一个SpringBoot Web项目 1 <?xml version="1.0" encoding="UTF-8"?> 2 <project xmlns="http://maven.apache.org/POM/4.0.0" 3 xmlns ...
分类:
编程语言 时间:
2020-03-06 01:27:13
阅读次数:
75
Command line instructions Git global setup git config --global user.name "Your Name" git config --global user.email ""you@example.com"" Create a new r ...
分类:
其他好文 时间:
2020-03-05 17:56:13
阅读次数:
63
具体报错: AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at 535 5.7.8 https://support.google.com/mail/?p=BadCrede ...
分类:
其他好文 时间:
2020-03-03 12:45:06
阅读次数:
88
(1) sent one mail to IC inbox via outlook: (2) go to SWEL to check if there is one entry for the mail you just sent (3) go to tcode SWI1, you will fin ...
分类:
其他好文 时间:
2020-03-03 10:47:28
阅读次数:
64
gitee下载的项目,点击“Add to Index”后就会整个项目显示*号 解决方法:删除“C:\Users\{username}\.git.config”文件,重新配置 git config --global user.name 'Jhone'git config --global user.e ...
分类:
其他好文 时间:
2020-03-02 13:06:05
阅读次数:
104
一使用SMTP模块发送邮件 qq邮箱发送邮件到163邮箱 首先,获取qq邮箱的授权码: 设置-账户 import smtplib from email.mime.text import MIMEText from email.header import Header msg_from = '2*** ...
分类:
编程语言 时间:
2020-03-02 00:47:59
阅读次数:
98
下图是 Android 操作系统的架构,架构包括 4 层,由上到下依次是应用程序层、应用程序框架层、核心类库和 Linux 内核。其中,核心类库中包含系统库及 Android 运行环境。 图1 Android 操作系统的架构 应用程序层 Android 装配了一个核心应用程序集合,包括 E-mail ...
分类:
移动开发 时间:
2020-02-28 15:46:50
阅读次数:
114