上一页 1 2 3 4 5 6 ··· 11 下一页

2023年11月20日

.net framework升级支持跨平台

摘要: .net framework升级到.net6(.net core) —— VS2022 的扩展中有一个升级的工具:.NET Upgrade Assistant ,用来做 .NET 框架的升级,非常方便。 阅读全文

posted @ 2023-11-20 11:39 anjun_xf 阅读(45) 评论(0) 推荐(0) 编辑

2023年9月26日

ts字符串与base64互转

摘要: 字符串转base64 和 base64转字符串 /** * 字符串转base64(不推荐) * @param str * @returns */ public static myEncode(str) { // 对字符串进行编码 var encode = encodeURI(str.replace( 阅读全文

posted @ 2023-09-26 14:30 anjun_xf 阅读(633) 评论(0) 推荐(0) 编辑

2023年7月8日

页面显示查询耗时

摘要: * 执行耗时接口,页面显示计时器 ```js let tt = document.querySelector('.spanTimer') as HTMLElement; let num = 0; tt.innerText = num + '秒'; let min = ''; let sec = '' 阅读全文

posted @ 2023-07-08 16:53 anjun_xf 阅读(1) 评论(0) 推荐(0) 编辑

2023年6月17日

读取ftp以base64返回到前端

摘要: * 需求:库中存放文件服务器的文件绝对路径文件(`d:\abc\111\abc.pdf`),搭建的ftp会指向`d:\abc` ,故`ftp:/192.1.1.12:21/111/abc.pdf`能取到文件。请用C#代码并base64格式返回到前端。 ```cs using System; usin 阅读全文

posted @ 2023-06-17 16:00 anjun_xf 阅读(86) 评论(0) 推荐(0) 编辑

2023年5月5日

Object和Map比较

摘要: Object和Map,Map似Object(都存储键值对集合),但又有区别。 ==适用场景== Object:仅做数据存储,属性仅为string、Symbol;需要转为json传输; Map :会频繁更新或删除k-v;存储大量数据且key不知;频繁进行迭代处理 ==Object== const ob 阅读全文

posted @ 2023-05-05 20:19 anjun_xf 阅读(26) 评论(0) 推荐(0) 编辑

2023年3月20日

图片转pdf

摘要: 引用 iTextSharp dll itextsharp.dll(版本5.5.13.3) 、 Spire.Pdf.dll(版本9.2.6.0)、BouncyCastle.Crypto.dll /// <summary> /// 图片转pdf /// </summary> /// <param nam 阅读全文

posted @ 2023-03-20 16:03 anjun_xf 阅读(34) 评论(0) 推荐(0) 编辑

2023年2月7日

less

摘要: less,浏览器不识别。需要编译成css。 @import "comm.less";//引入less文件(模块化引入多个less) .box1{ border:1px solid red; .box2{//嵌套 font-size:12px; width:100px + 100px; height: 阅读全文

posted @ 2023-02-07 19:47 anjun_xf 阅读(17) 评论(0) 推荐(0) 编辑

2023年1月15日

windows下BAT实现守护进程

摘要: 通过bat守护特定exe @echo off :start choice /t 5 /d y /n >nul tasklist|find /i "程序名称.exe" if ERRORLEVEL 1 ( echo 无exe程序 start D:\程序名称.exe ) else (echo 有exe程序 阅读全文

posted @ 2023-01-15 16:54 anjun_xf 阅读(278) 评论(0) 推荐(0) 编辑

2022年12月14日

给含有关键词的label着色

摘要: 给含有关键词的label着色 FineFileType() { let arr = document.querySelectorAll('.el-checkbox__label'); for (let index = 0; index < arr.length; index++) { const e 阅读全文

posted @ 2022-12-14 17:10 anjun_xf 阅读(18) 评论(0) 推荐(0) 编辑

2022年10月24日

查看oracle死锁

摘要: select A.sid, b.serial#, decode(A.type, 'MR', 'Media Recovery', 'RT','Redo Thread', 'UN','User Name', 'TX', 'Transaction', 'TM', 'DML', 'UL', 'PL/SQL 阅读全文

posted @ 2022-10-24 13:40 anjun_xf 阅读(102) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 ··· 11 下一页

导航

TOP