上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 46 下一页
摘要: 1.项目目录 2.app.json app.json 是当前⼩程序的全局配置,包括了⼩程序的所有⻚⾯路径、界⾯表现、⽹络超时时间、底部 tab 等。普通快速启动项⽬⾥边的 app.json 配置 2.1 page字段 ⽤于描述当前⼩程序所有⻚⾯路径,这是为了让微信客⼾端知道当前你的⼩程序⻚⾯定义在哪 阅读全文
posted @ 2022-09-25 18:28 轩哥聊码 阅读(61) 评论(0) 推荐(0)
摘要: 1.创建普通web项目 2.在pom.xml里添加依赖 父依赖版本低 rest风格的GetMapper注解没有 <!-- Spring Boot 启动父依赖 --> <parent> <groupId>org.springframework.boot</groupId> <artifactId>sp 阅读全文
posted @ 2022-09-24 19:02 轩哥聊码 阅读(42) 评论(0) 推荐(0)
摘要: int longestCommonSubsequence(string text1, string text2) { //dp[i][j]记录text1前i序列和text2前j序列的最长公共序列 int dp[1005][1005]; memset(dp,0,sizeof(dp)); for(int 阅读全文
posted @ 2022-09-21 13:51 轩哥聊码 阅读(24) 评论(0) 推荐(0)
摘要: int lengthOfLIS(vector<int>& nums) { int len=nums.size(); int dp[len]; int list[len];//记录序列下标 vector<int> v; for(int i=0;i<len;i++){ dp[i]=1; list[i]= 阅读全文
posted @ 2022-09-21 13:25 轩哥聊码 阅读(54) 评论(0) 推荐(0)
摘要: 1.添加插件 <plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat7-maven-plugin</artifactId> <version>2.2</version> <configuration> <port> 阅读全文
posted @ 2022-09-19 19:07 轩哥聊码 阅读(89) 评论(0) 推荐(0)
摘要: 1.编译方式选package 2.在文件夹的target目录下有war包 阅读全文
posted @ 2022-09-19 19:00 轩哥聊码 阅读(39) 评论(0) 推荐(0)
摘要: 1.父容器设置为flex布局,并允许折行 .flex-outer { display: flex; flex-wrap: wrap; } 2.通过修改子容器百分比实现 是n列就把百分比变为100/n(%) 阅读全文
posted @ 2022-09-19 15:37 轩哥聊码 阅读(204) 评论(0) 推荐(0)
摘要: 1.使用flex布局 <style> #back{ border: red solid 1px; width: 800px; height: 500px; display: flex; align-items: center; } #left{ border: blue 1px solid; wid 阅读全文
posted @ 2022-09-19 12:24 轩哥聊码 阅读(545) 评论(0) 推荐(0)
摘要: https://chuna2.787528.xyz/hellocd/p/10443237.html 阅读全文
posted @ 2022-09-19 12:14 轩哥聊码 阅读(24) 评论(0) 推荐(0)
摘要: 1.在父元素使用 display: flex; justify-content: center; align-items: center 其中justify-content是左右居中,align-items是上下居中 阅读全文
posted @ 2022-09-19 12:04 轩哥聊码 阅读(48) 评论(0) 推荐(0)
上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 46 下一页