上一页 1 2 3 4 5 6 ··· 18 下一页
摘要: css中包含3中元素:块状元素、内联元素(又叫行内元素)和内联块状元素。 一、常用的块级元素(block): <div>、<p>、<h1>...<h6>、<ol>、<ul>、<dl>、<table>、<address>、<blockquote> 、<form> 主要特点:display:block 阅读全文
posted @ 2024-01-26 14:49 唏嘘- 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 1、使用 beforeRouteLeave 来记录路由跳转之前滚动条的位置 beforeRouteLeave(to, from, next): 离开路由之前执行的函数,可用于页面的反向传值,页面跳转; beforeRouteLeave(to, from, next) { console.log('b 阅读全文
posted @ 2024-01-26 14:12 唏嘘- 阅读(626) 评论(0) 推荐(0) 编辑
摘要: 1、在form表单上 加上 :key=“formKey” <van-form colon ref="form" :key="formKey"> </van-form> 2、在data定义 formKey:0 data() { return { formKey: 0, } }, 3、在 activat 阅读全文
posted @ 2024-01-26 13:33 唏嘘- 阅读(627) 评论(0) 推荐(0) 编辑
摘要: 1、依赖冲突: 当服务启动或者调用发生如下异常时,NoSuchMethodError,ClassNotFoundException 等。则一般是因为jar包冲突引起的。 大多数依赖冲突,maven的传递依赖会引入很多隐式的依赖,依赖的版本和实际使用的版本不一致导致的。 2、依赖的原则: 原则一:最短 阅读全文
posted @ 2023-12-29 15:00 唏嘘- 阅读(61) 评论(0) 推荐(0) 编辑
摘要: 1、Maven 是 Apache 软件基金会组织维护的一款自动化构建工具,专注服务于 Java 平台的项目【构建】和【依赖管理】 构建的几个环节: ①清理:删除以前的编译结果,为重新编译做好准备。 ②编译:将 Java 源程序编译为字节码文件。 ③测试:针对项目中的关键点进行测试,确保项目在迭代开发 阅读全文
posted @ 2023-12-29 14:04 唏嘘- 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 1、requestParam参数校验 描述:通常用于get请求或者请求参数比较少的情形。 校验生效的前提:必须在Controller类上标注@Validated注解,在方法或者参数前添加无效! 如果校验失败,会抛出ConstraintViolationException异常。 @GetMapping 阅读全文
posted @ 2023-11-06 16:43 唏嘘- 阅读(1572) 评论(0) 推荐(0) 编辑
摘要: span是inline元素(内联元素),所以使用width并不起作用, 但是设置为block元素,又会影响其它元素的布局, CSS2.1引入的inine-block可以完美解决此问题 { width: 100px; display:inline-block; } 阅读全文
posted @ 2023-11-06 14:22 唏嘘- 阅读(50) 评论(0) 推荐(0) 编辑
摘要: CellStyle cs = wb.createCellStyle(); //设置字体 Font font = wb.createFont(); font.setColor(IndexedColors.BLACK.getIndex()); font.setFontHeightInPoints((sh 阅读全文
posted @ 2023-11-01 09:46 唏嘘- 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 在mysql 8 使用 CTE递归查询时,出现了这个报错 WITH recursive area AS ( SELECT area_name, area_code FROM sys_area_tree WHERE area_category = '1' AND parent_code IS NULL 阅读全文
posted @ 2023-10-23 14:00 唏嘘- 阅读(326) 评论(0) 推荐(0) 编辑
摘要: 表数据: 期望数据: 实现sql: select a.id, b.help_topic_id +1, a.execute_name, #substring_index(a.execute_name,',',b.help_topic_id+1), substring_index(substring_i 阅读全文
posted @ 2023-09-13 14:09 唏嘘- 阅读(618) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 18 下一页