摘要:
yml 配置 spring: devtools: restart: enabled: true additional-paths: src/main additional-exclude: test/** 依赖坐标 <dependency> <groupId>org.springframework. 阅读全文
摘要:
可能是你没有设置好连接 step.1 step.2 这里需要选择你电脑硬件的网卡,选其他的没用。 阅读全文
摘要:
记 su vi /etc/sudoers 默认权限是只读的 # 等下要改回去 chmod 777 /etc/sudoers 把root 那一行复制 保存后 # 等下要改回去 chmod 440 /etc/sudoers 阅读全文
摘要:
问题 PowerDesigner默认导出来的SQL没有注解。这一点是因为你没有添加Comment。 新问题 如果每个表都需要添加一个重复的Comment,那样太麻烦了。 所以可以直接改他的模板,把Comment换成Name。 原理 类似于 comment ${comment} => comment 阅读全文
摘要:
有dataSourceConfig就报错 直接删掉 阅读全文
摘要:
\w就是[0-9a-zA-Z_] \s是[ \t\v\n\r\f] \S是[^ \t\v\n\r\f] \W是[^0-9a-zA-Z_] \D就是[^0-9] \d就是[0-9] . 就是[^\n\r\u2028\u2029]。表示几乎任意字符。 var reg = /\w{1,30}(\.\w{1 阅读全文
摘要:
问题: 因为TypeScript不支持直接给一个接口类型的变量 赋一个未知的值。 如 const a:A = { name:'s' }; 你需要给这样的对象或数组值使用as 指定一个类型。 正确写法: const a:A = { name:'s' } as A; 数组写法一样: const a:A[ 阅读全文
摘要:
需求:我在写一个todocard,当我点击checkbox时候,父组件也会触发。 我需要在点击子组件checkbox的时候,父组件不触发。 解决方案: 在子组件上加 @click.stop 阅读全文
摘要:
Uncaught TypeError: Cannot read properties of null (reading 'element') nnot read properties of null (reading 'index') 错误写法 就是说子组件需要用div包着,你用其他东西,他无法添加 阅读全文
摘要:
主要代码是 .parent { justify-content: space-between; } 完整代码案例 .tasklist{ height: calc(80vh); overflow-y: auto; overflow-x: hidden; border: 1px solid #ccc; 阅读全文