会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
汤姆猫8
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
3
4
5
6
7
2021年5月1日
第三关(跨越检验)
摘要: 得知检验: <?php <p>code.txt</p> if (isset ($_GET['password'])) { if (preg_match ("/^[a-zA-Z0-9]+$/", $_GET['password']) FALSE) //要求含有数字字母,正则表达式匹配 { echo '
阅读全文
posted @ 2021-05-01 12:41 汤姆猫8
阅读(108)
评论(0)
推荐(0)
2021年4月28日
Mybatis数据连接池的配置---增删改查(以及遇见的问题)
摘要: 1.首先创建项目和各个文件,如图所示: 2.配置相关数据库连接 在jdbc.properties中加入 1 db.driver=com.mysql.jdbc.Driver 2 db.url=jdbc:mysql://localhost:3306/mysql?characterEncoding=utf
阅读全文
posted @ 2021-04-28 21:54 汤姆猫8
阅读(479)
评论(0)
推荐(0)
2021年4月7日
OpenCV随笔
摘要: 创建一个窗口#zeros(shape,dtype=float,order='C')#shape:形状,dtype:数据类型,可选参数,默认numpy.float64img = np.zeros((500,500,3),np.uint8) 读取图片: img=cv.imread('图片路径',flag
阅读全文
posted @ 2021-04-07 10:19 汤姆猫8
阅读(109)
评论(0)
推荐(0)
2021年3月27日
关于Maven repository中pom.xml的jar包依赖
摘要: https://mvnrepository.com 该mvn网站可以找到个个版本的依赖jar包 http://doc.canglaoshi.org 该网站为达内的开发文档服务器,可以找到很多开发中需要的配置文件
阅读全文
posted @ 2021-03-27 08:55 汤姆猫8
阅读(230)
评论(0)
推荐(0)
2021年3月26日
Vue——v-for动态绑定id的问题
摘要: 问题:在Vue中,会遇到许多个多选框,倘若数量很庞大那么一个一个input框、label节点寻找,这样操作很繁琐。 直接上解决方案吧: html页面: <ul v-for="(item,index) in provinces1"><input type="checkbox" :id="ki(inde
阅读全文
posted @ 2021-03-26 10:46 汤姆猫8
阅读(2272)
评论(0)
推荐(0)
上一页
1
···
3
4
5
6
7