Loading

上一页 1 2 3 4 5 6 7 8 9 10 ··· 30 下一页
摘要: 问题 Ubuntu22.04 x64 下运行.NET Core 3.1程序 报错: usable version of libssl was found 解决办法 wget http://security.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.0 阅读全文
posted @ 2023-01-27 08:52 重庆熊猫 阅读(311) 评论(0) 推荐(0) 编辑
摘要: const goToTop = () => window.scrollTo(0, 0); goToTop(); 阅读全文
posted @ 2023-01-26 08:39 重庆熊猫 阅读(19) 评论(0) 推荐(0) 编辑
摘要: const randomstr = Math.random().toString(36).substring(7); 阅读全文
posted @ 2023-01-25 10:08 重庆熊猫 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 用于判断页面是否在底部 const scrolledToBottom = () => document.documentElement.clientHeight + window.scrollY >= document.documentElement.scrollHeight; scrolledTo 阅读全文
posted @ 2023-01-24 08:17 重庆熊猫 阅读(60) 评论(0) 推荐(0) 编辑
摘要: const isTabInView = () => !document.hidden; console.log(isTabInView()); 阅读全文
posted @ 2023-01-24 08:17 重庆熊猫 阅读(28) 评论(0) 推荐(0) 编辑
摘要: const showPrintDialog = () => window.print() 阅读全文
posted @ 2023-01-23 10:15 重庆熊猫 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 用于重定向到新 URL const redirect = url => location.href = url redirect("https://www.google.com/"); 阅读全文
posted @ 2023-01-23 10:15 重庆熊猫 阅读(38) 评论(0) 推荐(0) 编辑
摘要: const randomBoolean = () => Math.random() >= 0.5; randomBoolean(); 阅读全文
posted @ 2023-01-22 09:45 重庆熊猫 阅读(22) 评论(0) 推荐(0) 编辑
摘要: slmgr /skms kms.chinancce.com slmgr /ipk WX4NM-KYWYW-QJJR4-XV3QB-6VM33 slmgr /ato 阅读全文
posted @ 2023-01-22 09:44 重庆熊猫 阅读(6708) 评论(0) 推荐(0) 编辑
摘要: const shuffle = array => array.sort(() => 0.5-Math.random()); //output console.log(shuffle([1,5,2,45])); console.log(shuffle(['1','2','3','4','5'])); 阅读全文
posted @ 2023-01-21 09:02 重庆熊猫 阅读(28) 评论(0) 推荐(0) 编辑
摘要: const isDarkMode = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches; console.log(isDarkMode); 阅读全文
posted @ 2023-01-20 10:10 重庆熊猫 阅读(28) 评论(0) 推荐(0) 编辑
摘要: JavaScript 判断当前设备是否为苹果设备 const isAppleDevice = () => /Mac|iPod|iPhone|iPad/.test(navigator.platform); isAppleDevice(); 阅读全文
posted @ 2023-01-19 08:08 重庆熊猫 阅读(61) 评论(0) 推荐(0) 编辑
摘要: this.button1.Image = global::项目名.Properties.Resources.资源名; 阅读全文
posted @ 2023-01-18 10:06 重庆熊猫 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 更新记录: 2023年1月6日 从笔记迁移到博客 ExtJS教程汇总:https://www.cnblogs.com/cqpanda/p/16328016.html 转载请注明出处:https://www.cnblogs.com/cqpanda/p/17031493.html 说明 Implemen 阅读全文
posted @ 2023-01-17 11:31 重庆熊猫 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 完整过程图示 请求流程 (1)客户端向授权服务系统发起请求,申请获取“令牌”。 (2)授权服务根据用户身份,生成一张专属“令牌”,并将该“令牌”以JWT规范返回给客户端。 (3)客户端将获取到的“令牌”放到Http请求的Headers中后,向主服务系统发起请求。主服务系统收到请求后,会从Header 阅读全文
posted @ 2023-01-16 11:27 重庆熊猫 阅读(214) 评论(0) 推荐(0) 编辑
摘要: https://www.aconvert.com/cn/icon/png-to-ico/ 阅读全文
posted @ 2023-01-16 11:27 重庆熊猫 阅读(15) 评论(0) 推荐(0) 编辑
摘要: https://www.youbianku.com/%E5%A6%82%E4%BD%95%E5%BF%AB%E9%80%9F%E6%9F%A5%E8%AF%A2%E6%9F%90%E4%B8%AA%E5%9C%B0%E5%9D%80%E6%89%80%E5%B1%9E%E8%A1%97%E9%81% 阅读全文
posted @ 2023-01-16 11:27 重庆熊猫 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 加入命名空间 using DevExpress.LookAndFeel; 设置主题 UserLookAndFeel.Default.SetSkinStyle(SkinStyle.Office2019Colorful); 阅读全文
posted @ 2023-01-15 10:07 重庆熊猫 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 执行下方脚本,显示为“0”,表示已经激活 use master go RECONFIGURE GO DECLARE @daysleft int DECLARE @instancename sysname SELECT @instancename = CONVERT(sysname, SERVERPR 阅读全文
posted @ 2023-01-13 12:57 重庆熊猫 阅读(375) 评论(0) 推荐(0) 编辑
摘要: 添加注释说明 给Controller 和 Action 添加注释 把注释信息在Swagger中展示 这时候需要用到XML文档,因为它是通过XML来维护Swagger文档的一些信息。 单击鼠标右键,选择项目名称”中的“属性”中的“生成”命令,勾选“输出路径”下面的“XML文档文件”, 重新编译后,系统 阅读全文
posted @ 2023-01-12 13:17 重庆熊猫 阅读(697) 评论(0) 推荐(1) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 30 下一页