上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 58 下一页
  2024年3月25日
摘要: spanRows: [],//需要合并的行spanMap: [],//从第几行到第几行需要合并 //计算需要合并的行号 for (let k = 0; k < that.tableData.length; k++) { //判断当前系统货号是否与下一个一致,如果一致则当前行单元格需要合并。 let 阅读全文
posted @ 2024-03-25 10:33 邢帅杰 阅读(9) 评论(0) 推荐(0) 编辑
  2024年3月20日
摘要: mysql连接字符串:server=localhost;port=3306;database=xcgdb;uid=root;pwd=root;CharSet=utf8;连接字符串加上:connectionCollatio=utf8mb4_unicode_ci;characterEncoding=ut 阅读全文
posted @ 2024-03-20 14:18 邢帅杰 阅读(110) 评论(0) 推荐(0) 编辑
  2024年3月19日
摘要: dos命令安装证书在Windows操作系统中,可以使用certutil命令来安装证书。以下是使用certutil安装证书的基本步骤和示例代码:打开命令提示符(以管理员身份运行)。使用certutil命令和-addstore选项来将证书添加到存储中。示例代码:certutil -addstore ro 阅读全文
posted @ 2024-03-19 10:09 邢帅杰 阅读(84) 评论(0) 推荐(0) 编辑
  2024年3月15日
摘要: 放 // 使用FileStream读取文件 using (FileStream fileStream = new FileStream(localDestZipFullName, FileMode.Open, FileAccess.Read)) { // 创建一个内存流 using (MemoryS 阅读全文
posted @ 2024-03-15 09:57 邢帅杰 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 在Program.cs中加入配置 app.UseStaticFiles(); // 在这里,我们指定了自定义的静态文件目录 "/custom-static" app.UseStaticFiles(new StaticFileOptions { FileProvider = new Microsoft 阅读全文
posted @ 2024-03-15 09:08 邢帅杰 阅读(107) 评论(0) 推荐(0) 编辑
  2024年3月12日
摘要: Accept:指定客户端能够接收的内容类型,内容类型中的先后次序表示客户端接收的先后次序。 实例:Accept:text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*; 阅读全文
posted @ 2024-03-12 10:09 邢帅杰 阅读(137) 评论(0) 推荐(0) 编辑
  2024年3月8日
摘要: 看 using System.Xml.Serialization; using Microsoft.AspNetCore.Mvc; using XCGWebApp.Dtos; using XCGWebApp.Common; using System.Text; namespace XCGWebApp 阅读全文
posted @ 2024-03-08 15:39 邢帅杰 阅读(168) 评论(0) 推荐(0) 编辑
  2024年2月5日
摘要: 来源:https://blog.csdn.net/lwplvx/article/details/113614095 var endpoint = httpContext.GetEndpoint(); if (endpoint != null) { var permissionAttribute = 阅读全文
posted @ 2024-02-05 17:19 邢帅杰 阅读(97) 评论(0) 推荐(0) 编辑
摘要: 中间件中如果想用Service服务,不能用注入,需要这样写: using (var serviceCope = httpContext.RequestServices.CreateScope()) { ISysSettingService? _sysSettingService = serviceC 阅读全文
posted @ 2024-02-05 17:11 邢帅杰 阅读(119) 评论(0) 推荐(0) 编辑
  2024年2月4日
摘要: 第一范式(1NF):属性不可分割,即每个属性都是不可分割的原子项。(实体的属性即表中的列)比如:姓名、年龄、电话,要分三个字段,不能放一个里面,方便查询。第二范式(2NF):满足第一范式;且不存在部分依赖,即非主属性必须完全依赖于主属性。(主属性即主键;完全依赖是针对于联合主键的情况,非主键列不能只 阅读全文
posted @ 2024-02-04 17:05 邢帅杰 阅读(4) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 58 下一页