摘要:
主要使用python-docx 与pandas 因为python-docx对表格的解析不够友好且效率低,故需转换一次 代码如下 # coding:utf-8 import os, re import docx from docx.document import Document as dc from 阅读全文
摘要:
一、form表单提交 $('#get_res').on('click', function () { var form = $("<form>"); form.attr("style", "display:none"); $("<input>", {name: 'fileid', value: fi 阅读全文
摘要:
根据getTime属性获得毫秒来计算时差 var dateEnd = new Date(res.endtime.replace(/-/g, "/"));//将-转化为/,使用new Date var dateBegin = new Date();//获取当前时间 var dateDiff = dat 阅读全文