摘要:
效果如图: "yAxis": [ { //就是一月份这个显示为一个线段,而不是数轴那种一个点点 "show" : true, "boundaryGap": true, "type": "category", "name": "时间", "data": ["1月", "2月", "3月", "4月", 阅读全文
2021年6月22日 #
2021年6月4日 #
摘要:
第一种ngx方式 server { listen 8088; server_name localhost; location / { proxy_pass http://localhost:8000/; } location monitor/ { proxy_pass http://localhos 阅读全文
2021年5月31日 #
摘要:
在ssm框架中,常用的日志输出为Log4j,但按照常规的配置,涉及mybatis那部分日志不能打印出来的;由于没有日志的输出,开发人员很难从控制台中迅速找出相应的sql语句,对调试和找错误带来了一定的困扰,针对这个问题,我们需要额外的配置以达到日志的输出 常见的两种方法为: 在日志配置文件(log4 阅读全文
2021年5月28日 #
摘要:
react报错: dispatch is not a function,需要在类前添加@connect(() => ({})) import {connect} from 'dva' @connect(({ testHome }) => ({ testHome})) class Methods ex 阅读全文
2021年5月27日 #
摘要:
List<Obj> test= objList.stream().filter(s -> s.getLicence() != null && s.getLicence().equals(obj.getLicence())).collect(Collectors.<Obj>toList()); 阅读全文
2021年5月17日 #
摘要:
List<Test> listChildrens = list.get(0).getChildrens();//组装参数regionIds = listChildrens.stream().map(Test::getAgentId).collect(Collectors.joining(",")); 阅读全文
2021年5月8日 #
摘要:
为什么慢执行 yarn 各种命令的时候,默认是去 npm/yarn 官方镜像源获取需要安装的具体软件信息 以下命令查看当前使用的镜像源 yarn config get registry默认源地址在国外,从国内访问的速度肯定比较慢 如何修改镜像源阿里旗下维护着一个完整的 npm 镜像源 registr 阅读全文
摘要:
nrm 是一个 npm 源管理器,允许你快速地在 npm源间切换。 什么意思呢,npm默认情况下是使用npm官方源(使用npm config ls命令可以查看),在国内用这个源肯定是不靠谱的,一般我们都会用淘宝npm源:https://registry.npm.taobao.org/,修改源的方式也 阅读全文
2021年4月23日 #
摘要:
visualMap:{ backgroundColor:"transparent", //标题背景色 borderColor:"#ccc", //边框颜色 borderWidth:1, //边框线宽 align: 'left', show:true, //是否显示 visualMap-continu 阅读全文
2021年4月14日 #
摘要:
问题:在mster分支写了半天,然后git commit 提交了 ,才发现 在masrter分支开发的。 解决: git reset HEAD~HEAD 代表:上一次提交 这样 刚刚提交的就又回到本地的local changes 列表中。nice继续 切换分支,重新提交 阅读全文