摘要: 错误提示: 命令行过长。要为 RunshiCoreApplication 或也为 Spring Boot default 配置 缩短命令行吗 或 Error running 'Application': Command line is too long. Shorten command line f 阅读全文
posted @ 2022-03-21 17:57 寒冷的雨呢 阅读(4980) 评论(0) 推荐(0) 编辑
摘要: node -v npx node-sass -v This usually happens because your environment has changed since running `npm install`. Run `npm rebuild node-sass` to downloa 阅读全文
posted @ 2022-03-16 18:31 寒冷的雨呢 阅读(3587) 评论(0) 推荐(0) 编辑
摘要: <template> <div> <div :id="chartId" style="height:500px; width:100%"></div> </div> </template> <script> import echarts from "echarts"; export default 阅读全文
posted @ 2022-03-13 10:25 寒冷的雨呢 阅读(3403) 评论(0) 推荐(0) 编辑
摘要: 横轴: xAxis:[ axisLabel: { rotate: -25, //旋转度数 fontSize: 14 }, 或 axisLabel:{ rich: { color1: { color: "#53772d", fontSize: 20, fontWeight: "bold" }, col 阅读全文
posted @ 2022-03-11 16:30 寒冷的雨呢 阅读(469) 评论(0) 推荐(0) 编辑
摘要: <template> <div> <div :id="chartId" style="height:500px; width:100%"></div> </div> </template> <script> import echarts from "echarts"; export default 阅读全文
posted @ 2022-03-11 15:51 寒冷的雨呢 阅读(491) 评论(0) 推荐(0) 编辑
摘要: 正常写法 <span style="font-size: 12px"></span> 绑定写法 <span :style="'font-size: 12px'"></span> 调用函数写法 <span :style="'font-size:'+getNrFontSize(item.deptName 阅读全文
posted @ 2022-03-11 11:48 寒冷的雨呢 阅读(91) 评论(0) 推荐(0) 编辑
摘要: 方法一:使用正则表达式,代码如下 getByteLen(val) { var len = 0; for (var i = 0; i < val.length; i++) { var a = val.charAt(i); if (a.match(/[^\x00-\xff]/ig) != null) { 阅读全文
posted @ 2022-03-11 10:48 寒冷的雨呢 阅读(985) 评论(0) 推荐(0) 编辑
摘要: 1、外部文件config.js 第一种写法 //常量的定义 const config = { baseurl:'http://172.16.114.5:8088/MGT2' } //函数的定义 function formatXml(text) { return text } function get 阅读全文
posted @ 2022-03-09 12:39 寒冷的雨呢 阅读(1511) 评论(0) 推荐(0) 编辑
摘要: 1.通过cnpm install echarts --save安装后,在main.js中引用出现以下问题 2.原因是默认安装了echarts5.0.0的版本 3.通过cnpm install echarts@4.9.0 --save 指令指定4.9.0的版本安装解决 阅读全文
posted @ 2022-03-09 10:18 寒冷的雨呢 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 1、首先安装moment npm install moment --save 2、在main.js里引入 import moment from 'moment'//导入文件 Vue.prototype.$moment = moment;//赋值使用 moment.locale('zh-cn');// 阅读全文
posted @ 2022-03-09 09:20 寒冷的雨呢 阅读(469) 评论(0) 推荐(0) 编辑
摘要: 该问题为配置文件路径错误,检查配置文件,千万不要给路径+"" mysql5正确形式为 jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC 阅读全文
posted @ 2022-03-07 17:56 寒冷的雨呢 阅读(1285) 评论(0) 推荐(0) 编辑
摘要: 1.启动报Loading class com.mysql.jdbc.Driver'. This is deprecated. The new driver class iscom.mysql.cj.jdbc.Driver’. The driver is automatically registere 阅读全文
posted @ 2022-03-07 17:55 寒冷的雨呢 阅读(890) 评论(0) 推荐(0) 编辑
摘要: 改一下mysql驱动的版本号 <version>5.1.46</version> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <scope>runtime</scope> <v 阅读全文
posted @ 2022-03-07 17:47 寒冷的雨呢 阅读(437) 评论(0) 推荐(0) 编辑
摘要: 1.mysql5.7和mysql8.0区别 https://blog.csdn.net/Da_Xiong000/article/details/125065335 在navicat查看mysql的版本: select version() from dual; 2.安装mysql https://ww 阅读全文
posted @ 2022-03-07 15:36 寒冷的雨呢 阅读(165) 评论(0) 推荐(0) 编辑
摘要: -- 今天 SELECT DATE_FORMAT(NOW(),'%Y-%m-%d 00:00:00') AS '今天开始'; SELECT DATE_FORMAT(NOW(),'%Y-%m-%d 23:59:59') AS '今天结束'; -- 昨天 SELECT DATE_FORMAT( DATE 阅读全文
posted @ 2022-03-05 18:10 寒冷的雨呢 阅读(12) 评论(0) 推荐(0) 编辑