上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 74 下一页
摘要: 最简单的做法是: // 假如这是前台传来的Date时间 Date dt; // 1天的毫秒数 long oneDayTime = 1000*3600*24; // 这个now就是减1天的时间了 Date nowTime = new Date(dt.getTime() - oneDayTime); 原 阅读全文
posted @ 2021-04-08 14:43 岁月淡忘了谁 阅读(762) 评论(0) 推荐(0) 编辑
摘要: <template> <div> <div ref="wordcloud" class="wordcloud"> </div> <button @click="download">下载</button> </div> </template> 下载方法如下: download(){ let mycan 阅读全文
posted @ 2021-04-08 14:40 岁月淡忘了谁 阅读(985) 评论(0) 推荐(0) 编辑
摘要: poi创建word表格合并单元格代码如下: 跨列合并: /** * @Description: 跨列合并 */ public void mergeCellsHorizontal(XWPFTable table, int row, int fromCell, int toCell) { for (in 阅读全文
posted @ 2021-04-08 14:33 岁月淡忘了谁 阅读(1570) 评论(0) 推荐(0) 编辑
摘要: 我使用的是Springboot框架开发的。首先需要在pom.xml文件中引入以下maven包: <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>3.10-FINAL</versi 阅读全文
posted @ 2021-04-08 14:20 岁月淡忘了谁 阅读(1490) 评论(0) 推荐(0) 编辑
摘要: 首先需要准备Nodejs环境,Nodejs中自带npm包管理工具,下载地址:http://nodejs.cn/download/ 1、设置npm包安装路径 npm config set prefix="D:\environment\nodejs\node_global" npm config set 阅读全文
posted @ 2021-04-08 14:11 岁月淡忘了谁 阅读(2497) 评论(0) 推荐(1) 编辑
摘要: 1、强制清缓存cache npm cache clean --force yarn cache clean 2、删除项目中的node_modules文件夹和两个lock文件 3、重新执行yarn install和npm install 阅读全文
posted @ 2021-03-19 13:45 岁月淡忘了谁 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 项目中用的是jeecgboot框架,public文件夹相当于static文件夹,该文件夹下的文件打包后不变,故在该文件下创建config.js文件(自定义名称) 在config.js中写入需要动态改变的参数,写成json格式方便调用 在index.html页面中引入config.js文件 在需要用到 阅读全文
posted @ 2021-03-18 11:22 岁月淡忘了谁 阅读(668) 评论(0) 推荐(0) 编辑
摘要: 情景重现 a.js export let test = function () { console.log('1'); } b.js let a= require ('./a'); a.test(); 运行node b,即出现如下报错: export default { ^^^^^^ SyntaxE 阅读全文
posted @ 2021-03-18 11:03 岁月淡忘了谁 阅读(2496) 评论(0) 推荐(0) 编辑
摘要: 安装Redis 1.首先双击现在完的安装程序 2.点击next 3.点击接受 继续next 4.设置Redis的服务端口 默认为6379 默认就好,单击next 5.选择安装的路径,并且打上勾(这个非常重要),添加到path是把Redis设置成windows下的服务,不然你每次都要在该目录下启动命令 阅读全文
posted @ 2021-03-18 10:50 岁月淡忘了谁 阅读(262) 评论(0) 推荐(0) 编辑
摘要: 搞了半天终于找到原因了,这绝对是后端的问题。我把解决方案列在这里: 首先我之前的做法是,请求一个视频链接,然后无脑返回一整个视频文件。对于chrome没有问题,只能说chrome兼容性做得比较好,并不是说视频传输协议就可以这样。 而对于safari来说,他不是一次性请求全部文件的(不论osx还是io 阅读全文
posted @ 2021-03-10 19:06 岁月淡忘了谁 阅读(2381) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 74 下一页