05 2021 档案
摘要:备忘,记录一下 添加一个异常过滤器 public class MyHandleErrorAttribute: HandleErrorAttribute { public override void OnException(ExceptionContext filterContext) { Excep
阅读全文
摘要:原代码: from a in db.Files select new Files { Id = a.Id, FilePath = a.FilePath }).ToList(); 新代码: (from a in db.Files select new newFiles { Id = a.Id, Fil
阅读全文
摘要:原代码: var para = new MySqlParameter() { ParameterName = "@p0", Value = UserName }; var result = db.Database.SqlQuery<int>(@"select count(id) from files
阅读全文
摘要:备忘 开启日志记录: SET GLOBAL general_log = 'ON'; 将日志输出至系统表: SET GLOBAL log_output = 'TABLE' 查询: SELECT * from mysql.general_log ORDER BY event_time DESC 不用时记
阅读全文
摘要:后台直接传来的时间是这样的 需要转换为标准时间格式 代码如下: 使用了layui数据表格的模板列 { field: 'RegistTime', title: '注册时间', templet: function (d) { return TimeFormat(d.RegistTime) } } fun
阅读全文
摘要:我不知道官方的做法是什么,但是现在我这种方法可以解决问题.... html部分 <div carousel-item id="Line_Chart"> <div id="UserRegistChart"></div> </div> script部分 var dom = document.getEle
阅读全文