摘要: 前端程序猿的福音,偷懒摸鱼必备良品,可以将几天的工作任务缩短到半天时间。 包含两个文件,一个js一个vue,vue文件是作为模板文件用来替换变量的,js是作为执行文件。 提供一下我自己的执行方法: 1.在webstorm中打开项目 2.在右上角,打开Edit Configurations 3.添加一 阅读全文
posted @ 2022-08-11 13:03 wxxwjef 阅读(451) 评论(0) 推荐(0) 编辑
摘要: // 首字母 /^[a-zA-Z]/ // 包含大小写字母,数字和特殊字符 /(?=.*[A-Z])(?=.*[a-z])(?=.*[0-9])(?=.*[\W_])/ 搜索 复制 阅读全文
posted @ 2022-08-10 16:27 wxxwjef 阅读(12) 评论(0) 推荐(0) 编辑
摘要: /** * 三元组转换成树形结构 * @param nodes 节点数组 * @param relations 关系数据 * @param idName 节点ID属性名称 * @param sourceName 关系起始节点ID属性名称 * @param targetName 关系终止节点ID属性名 阅读全文
posted @ 2022-08-08 09:36 wxxwjef 阅读(55) 评论(0) 推荐(0) 编辑
摘要: /** * 包含parentId的数组转成树形结构数组 * @param data 原始数据数组 * @param idName ID属性名称 * @param parentIdName 父ID属性名称 * @returns {[]} */ const listToTree = function ( 阅读全文
posted @ 2022-07-13 19:46 wxxwjef 阅读(477) 评论(0) 推荐(0) 编辑
摘要: 转载自:https://blog.csdn.net/weixin_44733660/article/details/124828867 一、简介一个用来专门安全快速的清理沉重的node_modules这里只简单说下删除node_modules步骤,其他功能可以看官网文档npkill官网 二、安装方式 阅读全文
posted @ 2022-06-16 09:38 wxxwjef 阅读(149) 评论(0) 推荐(0) 编辑
摘要: JAVA端 控制器层 @PostMapping(value = "/export") public void exportGraphTemplate(HttpServletResponse response) { try { @Cleanup ExcelWriter writer = exportS 阅读全文
posted @ 2022-03-18 12:09 wxxwjef 阅读(731) 评论(0) 推荐(0) 编辑
摘要: 原文地址https://blog.csdn.net/p_jinsan/article/details/96152078 稍作了一些补充 1.环境windows10->虚拟机->Ubuntu 16.04 64位 2.前置条件 2.1更新apt sudo apt upgrade sudo apt upd 阅读全文
posted @ 2022-03-06 17:17 wxxwjef 阅读(574) 评论(0) 推荐(0) 编辑
摘要: 摘自网友文章:https://blog.csdn.net/okboy519/article/details/104180862 1.安装插件 npm install postcss-px-to-viewport --save-dev 2.在项目根目录创建一个postcss.config.js,位置和 阅读全文
posted @ 2021-12-24 14:26 wxxwjef 阅读(644) 评论(0) 推荐(0) 编辑
摘要: 本文参考了该博主(布口袋_天晴了)文章:https://www.jianshu.com/p/b3a978d4f77f Neo4j的安装对硬件、系统都有一些要求的。关于Memory,最低要求是2GB。关于CPU,最低要求是Itel Core i3 推荐使用Intel Core i7 或 IBM POW 阅读全文
posted @ 2021-09-14 13:31 wxxwjef 阅读(4521) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>颜色区域中间的值获 阅读全文
posted @ 2021-08-05 20:38 wxxwjef 阅读(605) 评论(0) 推荐(0) 编辑