07 2022 档案
摘要:参考链接:https://www.jianshu.com/p/f06a9252de88 // 时间格式yyyy-MM-dd HH:mm:ss dateTimeFormatter(date: Date): string { if (!date) return ''; const month = (da
阅读全文
摘要:// 返回星期一和星期日 getWeekRange(yearNo: number, weekNo: number): any { let firstDayofYear = new Date(yearNo, 0, 1); if (firstDayofYear.getDay() > 4) { let w
阅读全文
摘要:参考链接: https://blog.csdn.net/wh2574021892/article/details/122151103
阅读全文
摘要:参考链接 https://www.php.cn/faq/464286.html
阅读全文
摘要:jdk官网: https://jdk.java.net/18/ 解压后就可以了 2、环境变量配置 亲测有效 参考链接:https://blog.csdn.net/binbingg/article/details/38260167
阅读全文
摘要:1、官网下载Ckeditor ck5最新版本不会用,目前是用的是ck4,下载full package全包,这样功能比较全。 官网地址:https://ckeditor.com/ckeditor-4/download/ https://ckeditor.com/docs/ckeditor4/lates
阅读全文
摘要:// 获取html5文本里面imag标签中src路径中参数 getImagUrlParam(content: any): any { //匹配图片中的img标签 let imgReg = /<img.*?(?:>|\/>)/gi; // 匹配图片中的src let srcReg = /src=[\'
阅读全文
摘要:// base64转二进制流 base64ToBlob(url: any) { let arr = url.split(','), mime = arr[0].match(/:(.*?);/)[1], bstr = atob(arr[1]), n = bstr.length, u8arr = new
阅读全文
摘要:// 时间格式yyyy-MM-dd HH:mm:ss dateTimeFormatter (date: Date): string { if(!date) return ''; const month = (date.getMonth() + 1).toString().padStart(2, '0
阅读全文
摘要:格式1: <input type="file" class="hidden" #uploadDataFileInput accept="application/vnd.ms-excel,application/vnd.openxmlformats-officedocument.spreadsheet
阅读全文