摘要: xx.vue <template> <div @click='alert("a")'></div> </template> 这样在@click 后面直接alert('a'),会包错out:srcdoc:166 TypeError: _ctx.alert is not a function 可是我就是 阅读全文
posted @ 2023-04-24 11:07 wangjin_1 阅读(54) 评论(0) 推荐(0)
摘要: npm install 项目拉下来后需要安装依赖。 内控项目报错 RR! code 128 npm ERR! An unknown git error occurred npm ERR! command git --no-replace-objects ls-remote ssh://git@git 阅读全文
posted @ 2023-04-22 11:56 wangjin_1 阅读(536) 评论(0) 推荐(0)
摘要: UPDATE jc_accuse SET accuser_type=?, accused_type=?, accused_id_no=? WHERE accuse_id=? ==> Parameters: 1(String), 1(String), 3305281e-fef1-4854-be19-5 阅读全文
posted @ 2023-03-23 15:40 wangjin_1 阅读(67) 评论(0) 推荐(0)
摘要: Preparing: SELECT accuse_id,receive_channel,industry_category,delegate_flag,transfer_department,accuse_content,accuser_type,accuser_id_no,accuser_name 阅读全文
posted @ 2023-03-22 23:24 wangjin_1 阅读(45) 评论(0) 推荐(0)
摘要: java -jar xx.jar 命令启动Java程序,这个方式主要有两个缺点,一是在任务栏会有黑图标,而且没有名字,在有几个黑图标的情况下,不知道哪个服务是开启的;缺点2:这种启动方式,如果一定较短时间内没有被访问,那么Java程序不会再响应前端请求,造成假死想象。 给命令窗口命名 title ‘ 阅读全文
posted @ 2023-03-20 22:45 wangjin_1 阅读(154) 评论(0) 推荐(0)
摘要: windows 杀掉对应端口的进程 call npx kill-port 9051 阅读全文
posted @ 2023-03-20 22:44 wangjin_1 阅读(19) 评论(0) 推荐(0)
摘要: 创建空间 create tablespace gpr datafile 'D:\workplace\z_oracle_namespace\gpr.dbf' size 100M autoextend on next 10M maxsize 5120m extent management local; 阅读全文
posted @ 2023-03-15 14:19 wangjin_1 阅读(30) 评论(0) 推荐(0)
摘要: 安装: 下载nodejs binary文件,配置nodejs 命令地址到环境变量 Path中即可。 配置nodejs 配置nodejs npm registery 。淘宝镜像拉取依赖速度快,就选他。 npm config set registry https://registry.npm.taoba 阅读全文
posted @ 2023-03-14 10:54 wangjin_1 阅读(98) 评论(0) 推荐(0)
摘要: nacos 注册成功,seata 服务器日志显示回滚成功,但是实际上没有回滚,需要查询原因,AT模式回滚需要数据库中有undo_log日志,实际上没有看到这个表的记录,说明全局事物开启后,服务数据没有被seata解析,所以没有插入undo_log. 查看一下这个说法:https://blog.csd 阅读全文
posted @ 2023-02-27 23:03 wangjin_1 阅读(1152) 评论(0) 推荐(0)
摘要: @Configuration public class BeanConfig { @LoadBalanced @Bean public RestTemplate restTemplate() { return new RestTemplate(); } } @Autowired RestTempla 阅读全文
posted @ 2023-02-23 13:09 wangjin_1 阅读(192) 评论(0) 推荐(0)