test

博客园 首页 新随笔 联系 订阅 管理
上一页 1 2 3 4 5 6 7 ··· 11 下一页

2021年6月22日 #

摘要: 效果如图: "yAxis": [ { //就是一月份这个显示为一个线段,而不是数轴那种一个点点 "show" : true, "boundaryGap": true, "type": "category", "name": "时间", "data": ["1月", "2月", "3月", "4月", 阅读全文
posted @ 2021-06-22 17:21 testgogogo 阅读(737) 评论(0) 推荐(0) 编辑

2021年6月4日 #

摘要: 第一种ngx方式 server { listen 8088; server_name localhost; location / { proxy_pass http://localhost:8000/; } location monitor/ { proxy_pass http://localhos 阅读全文
posted @ 2021-06-04 13:56 testgogogo 阅读(222) 评论(0) 推荐(0) 编辑

2021年5月31日 #

摘要: 在ssm框架中,常用的日志输出为Log4j,但按照常规的配置,涉及mybatis那部分日志不能打印出来的;由于没有日志的输出,开发人员很难从控制台中迅速找出相应的sql语句,对调试和找错误带来了一定的困扰,针对这个问题,我们需要额外的配置以达到日志的输出 常见的两种方法为: 在日志配置文件(log4 阅读全文
posted @ 2021-05-31 15:18 testgogogo 阅读(463) 评论(0) 推荐(0) 编辑

2021年5月28日 #

摘要: react报错: dispatch is not a function,需要在类前添加@connect(() => ({})) import {connect} from 'dva' @connect(({ testHome }) => ({ testHome})) class Methods ex 阅读全文
posted @ 2021-05-28 13:10 testgogogo 阅读(539) 评论(0) 推荐(0) 编辑

2021年5月27日 #

摘要: List<Obj> test= objList.stream().filter(s -> s.getLicence() != null && s.getLicence().equals(obj.getLicence())).collect(Collectors.<Obj>toList()); 阅读全文
posted @ 2021-05-27 17:20 testgogogo 阅读(133) 评论(0) 推荐(0) 编辑

2021年5月17日 #

摘要: List<Test> listChildrens = list.get(0).getChildrens();//组装参数regionIds = listChildrens.stream().map(Test::getAgentId).collect(Collectors.joining(",")); 阅读全文
posted @ 2021-05-17 10:50 testgogogo 阅读(1441) 评论(0) 推荐(0) 编辑

2021年5月8日 #

摘要: 为什么慢执行 yarn 各种命令的时候,默认是去 npm/yarn 官方镜像源获取需要安装的具体软件信息 以下命令查看当前使用的镜像源 yarn config get registry默认源地址在国外,从国内访问的速度肯定比较慢 如何修改镜像源阿里旗下维护着一个完整的 npm 镜像源 registr 阅读全文
posted @ 2021-05-08 10:36 testgogogo 阅读(136) 评论(0) 推荐(0) 编辑

摘要: nrm 是一个 npm 源管理器,允许你快速地在 npm源间切换。 什么意思呢,npm默认情况下是使用npm官方源(使用npm config ls命令可以查看),在国内用这个源肯定是不靠谱的,一般我们都会用淘宝npm源:https://registry.npm.taobao.org/,修改源的方式也 阅读全文
posted @ 2021-05-08 10:13 testgogogo 阅读(79) 评论(0) 推荐(0) 编辑

2021年4月23日 #

摘要: visualMap:{ backgroundColor:"transparent", //标题背景色 borderColor:"#ccc", //边框颜色 borderWidth:1, //边框线宽 align: 'left', show:true, //是否显示 visualMap-continu 阅读全文
posted @ 2021-04-23 10:52 testgogogo 阅读(437) 评论(0) 推荐(0) 编辑

2021年4月14日 #

摘要: 问题:在mster分支写了半天,然后git commit 提交了 ,才发现 在masrter分支开发的。 解决: git reset HEAD~HEAD 代表:上一次提交 这样 刚刚提交的就又回到本地的local changes 列表中。nice继续 切换分支,重新提交 阅读全文
posted @ 2021-04-14 15:57 testgogogo 阅读(489) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 ··· 11 下一页