上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页
摘要: 1. 存储过程declare的变量不要和数据库字段名一样 啊,不然可能插入时是Null DELIMITER ;; CREATE DEFINER=`root`@`%` PROCEDURE `fAddScore`(IN `_userid` int,IN `_gold` bigint,IN `_typeI 阅读全文
posted @ 2021-11-29 18:38 zjhgx 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 1. 在学slice的时候有个地方感到困惑: unc main() { s := []int{2, 3, 5, 7, 11, 13} printSlice(s) // Slice the slice to give it zero length. s = s[:0] printSlice(s) // 阅读全文
posted @ 2021-10-29 22:20 zjhgx 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 点compile突然报错,报:Execution failed for task ':game:transformClassesAndResourcesWithProguardForReleaseFeature'. 解决方法是重启cocos creator。 阅读全文
posted @ 2021-10-06 23:53 zjhgx 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 1. go mod tidy : dial tcp xx:443: i/o timeout, 因为go 1.17 默认的GOPROXY=https://proxy.golang.org,direct ,在墙内无法访问。 所以在.zshrc /.bashrc 加上环境变量 export GOPROXY 阅读全文
posted @ 2021-09-25 23:58 zjhgx 阅读(7519) 评论(0) 推荐(0) 编辑
摘要: 遇到一件怪事,今天在测试一段代码时老时报NullPointException 代码: ObjectUtil.java JdOrder jdOrder = new JdOrder(); jdOrder.setSkuId(132323324l); jdOrder.setCommissionRate(Bi 阅读全文
posted @ 2021-09-03 02:16 zjhgx 阅读(466) 评论(0) 推荐(0) 编辑
摘要: 首先看Aspect的代码 @Pointcut("within(com.davidhu.shopguide.admin.mapper..*) + " || within(com.davidhu.shopguide..*.impl..*)" " ) public void applicationPack 阅读全文
posted @ 2021-08-21 22:09 zjhgx 阅读(449) 评论(0) 推荐(0) 编辑
摘要: <q-btn v-if="isTaoPwd == false" class="text-weight-bold" target="_blank" color="accent" text-color="white" :size="buttonSize" type="a" :href="`${host} 阅读全文
posted @ 2021-08-05 17:32 zjhgx 阅读(171) 评论(0) 推荐(0) 编辑
摘要: job1: 把超过24小时的数据移到另一张表 @Override @Transactional public void moveItemsTo48h() { List<CrawlItem> historyItems = super.baseMapper.getItemsAfter24Hours(); 阅读全文
posted @ 2021-08-02 23:32 zjhgx 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 需求是需要copy从后台接口返回的字符串到剪切板,在mac 的chrome,android 微信,浏览器中测试都可以,但在iphone safari,微信,还有mac 的safari中copy都失败 this.$axios.get(`${this.host}/goods/go/${code}`).t 阅读全文
posted @ 2021-07-30 20:15 zjhgx 阅读(1966) 评论(0) 推荐(0) 编辑
摘要: 1. RpcContext.getContext().setAttachment() 只能传字符串参数?对象参数无法传 2. duoob的service的方法名最好不要用getOrders这种以get...开头,有可能启动报错: Caused by: javassist.CannotCompileE 阅读全文
posted @ 2021-07-28 11:24 zjhgx 阅读(300) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页