本文主要介绍ASP.NET Core中,在Startup.cs中ConfigureServices()方法中调用services.AddMvc()方法,出现异常(KeyNotFoundException: The given key was not present in the dictionary ...
分类:
Web程序 时间:
2021-06-21 20:44:57
阅读次数:
0
1. string 1. 格式化填充 string str = "this {0} a {1}"; Console.WriteLine(string.Format(str, "is", "boy")); // this is a boy 2. 将数据合并成字符串 string[] strArr = ...
Swagger简介 由于前后端分离,前端或者后端无法做到及时协商,最终导致问题爆发,所以程序猿写代码时都是很暴躁的。 这个时候,就可以用到Swagger了,它号称世界上最流行的API框架,Restful Api文档在线自动生成器。还可以在线测试API接口,不必特意去下载Postman,ApiPost ...
分类:
其他好文 时间:
2020-09-24 21:48:48
阅读次数:
37
if (Identification.Length == 18)//处理18位的身份证号码从号码中得到生日和性别代码 { string age = Identification.Substring(6, 4) + "-" + Identification.Substring(10, 2) + "-" ...
一、一般委托方式 Func<int, int, int> AddMethodHander; public unName() { AddMethodHander += AddMethod; } public int AddMethod(int num1, int num2) { int result ...
什么是 MyBatis ? MyBatis 是一款优秀的持久层框架,它支持定制化 SQL、存储过程以及高级映射。 MyBatis 避免了几乎所有的 JDBC 代码和手动设置参数以及获取结果集。 MyBatis 可以使用简单的 XML 或注解来配置和映射原生信息,将接口和 Java 的 POJOs(P ...
分类:
其他好文 时间:
2020-07-13 23:07:04
阅读次数:
93
ASP.NET CORE MVC用时分析工具MiniProfiler MiniProfiler(https://miniprofiler.com/)是一个轻量级且简单易用的分析工具库,它可以用来分析ASP.NET Core应用。 优点 针对ASP.NET Core MVC应用,使用MiniProfi ...
分类:
Web程序 时间:
2020-06-29 11:52:04
阅读次数:
60
iview的表单校验问题1、简单校验 (1)给外层的Form 设置属性 :model='formDataInfo';属性 :rules :'ruleValidate'; 属性ref='formValidate' (2)在需要校验的 FormItem 设置属性 prop 指向对应字段。需要注意的是:F ...
分类:
其他好文 时间:
2020-06-25 12:15:32
阅读次数:
55
//APP定位 getAddress() { console.log(77777); if (navigator.geolocation) { navigator.geolocation.getCurrentPosition( this.showPosition, this.showError ); ...
分类:
移动开发 时间:
2020-06-23 17:25:29
阅读次数:
176
1.复制单元格 1 ... 2 public static void copyCell(Workbook wb, Cell srcCell, Cell distCell, boolean copyValueFlag) { 3 //新建单元格样式 4 CellStyle newStyle = wb.c ...
分类:
其他好文 时间:
2020-06-09 20:21:13
阅读次数:
48