上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 58 下一页
  2024年1月26日
摘要: c /// <summary> /// 复制资源文件(/Resources/Raw/) /// </summary> /// <param name="resourceFileName">资源文件名</param> public async static Task CopyFileFromResou 阅读全文
posted @ 2024-01-26 10:02 邢帅杰 阅读(13) 评论(0) 推荐(0) 编辑
  2024年1月22日
摘要: 一、简介:Object.assign() 方法用于将所有可枚举属性的值从一个或多个源对象复制到目标对象。它将返回目标对象。简单来说,就是Object.assign()是对象的静态方法,可以用来复制对象的可枚举属性到目标对象,利用这个特性可以实现对象属性的合并。 二、用法:Object.assign( 阅读全文
posted @ 2024-01-22 09:32 邢帅杰 阅读(272) 评论(0) 推荐(0) 编辑
  2023年12月29日
摘要: 参考.net6连接mysql:https://www.cnblogs.com/xsj1989/p/15379350.html其中.net8版本的不能安装:MySql.EntityFrameworkCore这个包,需要安装Pomelo.EntityFrameworkCore.MySql,而且版本号必须 阅读全文
posted @ 2023-12-29 17:15 邢帅杰 阅读(200) 评论(0) 推荐(0) 编辑
  2023年12月21日
摘要: 对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 邢帅杰 阅读(221) 评论(0) 推荐(0) 编辑
摘要: code <style> /* 隐藏标准的滚动条 */ html::-webkit-scrollbar { width: 0; } body::-webkit-scrollbar { width: 0; } /* 隐藏 IE 和 Edge 浏览器的滚动条 */ ::-ms-scrollbar { w 阅读全文
posted @ 2023-12-21 15:57 邢帅杰 阅读(2) 评论(0) 推荐(0) 编辑
  2023年12月20日
摘要: 一、存储字符集 utf8 和 utf8mb41、utf8utf8 是 Mysql 中的一种字符集,只支持最长三个字节的 UTF-8 字符,也就是 Unicode 中的基本多文本平面2、utf8mb4要在 Mysql 中保存 4 字节长度的 UTF-8 字符,需要使用 utf8mb4 字符集,但只有 阅读全文
posted @ 2023-12-20 10:44 邢帅杰 阅读(2089) 评论(0) 推荐(0) 编辑
  2023年12月12日
摘要: code //获取当前应用的包名和类名 String packageName = getPackageName(); String className = getClass().getName(); //创建Intent Intent intent = new Intent(curAct, Main 阅读全文
posted @ 2023-12-12 17:48 邢帅杰 阅读(46) 评论(0) 推荐(0) 编辑
  2023年12月6日
摘要: 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 邢帅杰 阅读(50) 评论(0) 推荐(0) 编辑
  2023年11月30日
摘要: 参考:https://www.cnblogs.com/yhnet/p/14804869.htmlvue重定向和跨域配置:https://zhuanlan.zhihu.com/p/5306882511.安装组件:URL Rewrite:https://www.iis.net/downloads/mic 阅读全文
posted @ 2023-11-30 18:17 邢帅杰 阅读(317) 评论(0) 推荐(0) 编辑
  2023年10月31日
摘要: 参考:https://blog.csdn.net/Android_Cll/article/details/131641229https://cloud.tencent.com/developer/article/2301730Android项目新增js:/app/src/main/assets/ww 阅读全文
posted @ 2023-10-31 13:38 邢帅杰 阅读(441) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 58 下一页