加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
test.js 1.32 KB
一键复制 编辑 原始数据 按行查看 历史
let tableNameExcelColsMap={
"a":"a",
}
// console.log(
// tableNameExcelColsMap["b"]);
// undefined
// if( !tableNameExcelColsMap["b"]){
// console.log("no");
// }
// undefined
// no
// export
function formatDateNumber(numb, format) {
let time = new Date((numb - 1) * 24 * 3600000 + 1)
time.setFullYear(time.getFullYear() - 70)
let year = time.getFullYear() + ''
let month = time.getMonth() + 1 + ''
month = month.length === 1 ? '0' + month : month;
let date = time.getDate() + ''
date = date.length === 1 ? '0' + date : date;
if(format && format.length === 1) {
return year + format + month + format + date
}
return year+(month < 10 ? '0' + month : month)+(date < 10 ? '0' + date : date)
}
let formatDateNumberGang=formatDateNumber(43434,"-")
// console.log(formatDateNumberGang);
// D:\proj\springBoot\xzs-mysql\source\vue\xzs-admin>node test
// 2018-11-30
// D:\proj\springBoot\xzs-mysql\source\vue\xzs-admin>node test.js
// 2018-11-30
// {/* <div>userScoreSum {{ userScoreSum }}}</div> */}
let sumArticle=`userScoreSum:0,
paperScoreSum:0,
questionCorrectSum:0,
questionCountSum:0,
doTimeSum:0,`
let sumNames=
sumArticle.trim().split("\n").forEach(item=>{
// console.log(item.split(":")[0]);
return item.split(":")[0]
})
console.log(sumNames);
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化