mysql 添加字段 ALTER TABLE t_user ADD COLUMN user_age int(11) DEFAULT NULL COMMENT '年龄' AFTER user_email; mysql 修改字段 ALTER TABLE user10 MODIFY email VARCH ...
分类:
数据库 时间:
2020-07-09 15:27:30
阅读次数:
388
from docx import Document from docx.shared import Pt,Inches #Pt指镑(int类型),Inches指英寸(float类型) w=Document(r'D:\word练习\练习.docx') for paragraph in w.paragr ...
分类:
其他好文 时间:
2020-07-08 22:51:25
阅读次数:
65
Hello and Welcome to the first part of an exciting series of blog posts where you will learn how to build an end-to-end full stack polling app similar ...
分类:
移动开发 时间:
2020-07-08 19:54:59
阅读次数:
69
最近搞东西的时候要操作时间,就去网上了解一下时间操作被用的最多的几个类java.util.Calendar、java.util.Date、java.time.LocalDate,这三个时间类中java.time.LocalDate是由java 8新提供的,记录下三个类的特点。 java.util.D ...
分类:
编程语言 时间:
2020-07-07 17:46:33
阅读次数:
79
初始工程文件太大或者文件数太多时,向远程仓库push时总是失败,如何解决? 报错代码: Git Fatal:The remote end hung up unexpectedly 原因:文件太大 解决办法: 1.修改设置git config文件的postBuffer的大小。(设置为500MB) gi ...
分类:
其他好文 时间:
2020-07-07 17:24:11
阅读次数:
81
我们在用CSS修饰页面样式的时候,浮动是非常普遍的,所以清除浮动也会经常的,清除浮动的方法不少,但是唯爱伪元素清除浮动这个方法,为了减少冗余的代码,专业的写法如下:.clearfix:after{ content:""; display:block; clear:both; height:0; vi... ...
分类:
Web程序 时间:
2020-07-07 17:23:45
阅读次数:
74
.link:hover{ color: yellow; font-weight: bold; /*倾斜*/ font-style: italic;}/*before和after加的东西不能被选中*/.box1:before{ content: "."; color: red;}.box2:after ...
分类:
其他好文 时间:
2020-07-07 13:45:32
阅读次数:
62
idhttp=new TIdHTTP(NULL);idhttp->AllowCookies =true;idhttp->HandleRedirects =true; //允许重定向idhttp->ConnectTimeout =20000;idhttp->ReadTimeout =20000;//h ...
分类:
Web程序 时间:
2020-07-07 13:16:55
阅读次数:
91
document.styleSheets[0].addRule('#' + node.key + '::after', 'height:' + fileNameDom.clientHeight + 'px !important'); // 设置伪元素样式 document.styleSheets[0 ...
分类:
Web程序 时间:
2020-07-06 18:09:02
阅读次数:
173
自己对时间操作的时候一些方法 public static final SimpleDateFormat DATETIME_FORMAT_DATE = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); public static final SimpleDate ...
分类:
其他好文 时间:
2020-07-06 17:59:00
阅读次数:
50