posts - 609,  comments - 13,  views - 64万
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5
12 2023 档案
.net8连接MySQL、连接MySQL显示SSL Authentication Error错误处理
摘要:参考.net6连接mysql:https://www.cnblogs.com/xsj1989/p/15379350.html其中.net8版本的不能安装:MySql.EntityFrameworkCore这个包,需要安装Pomelo.EntityFrameworkCore.MySql,而且版本号必须 阅读全文
posted @ 2023-12-29 17:15 邢帅杰 阅读(384) 评论(0) 推荐(0) 编辑
CSS设置div高度自动全屏
摘要:对body和html都设置高度100% html,body { height: 100%; width: 100%; margin: 0 0 0 0; padding: 0 0 0 0; position: relative; } 然后再对div设置100% #app { height: 100%; 阅读全文
posted @ 2023-12-21 15:58 邢帅杰 阅读(232) 评论(0) 推荐(0) 编辑
CSS隐藏滚动条
摘要:code <style> /* 隐藏标准的滚动条 */ html::-webkit-scrollbar { width: 0; } body::-webkit-scrollbar { width: 0; } /* 隐藏 IE 和 Edge 浏览器的滚动条 */ ::-ms-scrollbar { w 阅读全文
posted @ 2023-12-21 15:57 邢帅杰 阅读(5) 评论(0) 推荐(0) 编辑
mysql数据库字符集utf8mb4和排序规则utf8mb4_bin
摘要:一、存储字符集 utf8 和 utf8mb41、utf8utf8 是 Mysql 中的一种字符集,只支持最长三个字节的 UTF-8 字符,也就是 Unicode 中的基本多文本平面2、utf8mb4要在 Mysql 中保存 4 字节长度的 UTF-8 字符,需要使用 utf8mb4 字符集,但只有 阅读全文
posted @ 2023-12-20 10:44 邢帅杰 阅读(4253) 评论(0) 推荐(1) 编辑
android重启app
摘要:code //获取当前应用的包名和类名 String packageName = getPackageName(); String className = getClass().getName(); //创建Intent Intent intent = new Intent(curAct, Main 阅读全文
posted @ 2023-12-12 17:48 邢帅杰 阅读(65) 评论(0) 推荐(0) 编辑
WebView支持第三方网页使用cookie
摘要:code:https://wenmayi.com/post/37667.html if(android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { CookieManager.getInstance().setAcceptT 阅读全文
posted @ 2023-12-06 17:51 邢帅杰 阅读(62) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示