摘要:
插入数据 insert into Department (Id,Name,ParentId) VALUES (1,'总经办',0), (2,'研发部',1), (3,'人事部',1), (4,'设计部',2), (5,'行政部',3) 查询意图: 查询某个部门下所有子部门包括本部门所在层级 WITH 阅读全文
摘要:
使用draw()对页面重绘 initTable = $("#m_table_1").dataTable({ // language: lang, //提示信息 dom: "<'row'<'col-sm-12'tr>>\n\t\t\t<'row'<'col-sm-12 col-md-5'i><'col 阅读全文
摘要:
可能原因:组件会缓存上次的上传历史,若是同一文件就不处理 具体原因:待查 解决方法:在choose里面增加如下语句“uploadListIns.config.elem.next()[0].value = '' ” var uploadListIns = upload.render({ elem: ' 阅读全文
摘要:
Jquery滚动条监听 const scrollContainer = document.getElementById('ticket-records'); scrollContainer.addEventListener('scroll', () => { if (scrollContainer. 阅读全文
摘要:
异常: 原因: js代码中可能符号错误,如括号没有关闭、半角全角、 本次的原因是双引号没有关闭 阅读全文
摘要:
1.安装NuGet包 2.准备Nlog的配置文件 nlog.config <?xml version="1.0" encoding="utf-8" ?> <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="htt 阅读全文
摘要:
1.安装NuGet包AutoMapper 2.建立示例Entity、Dto Entity public class User { public long Id { get; set; } /// <summary> /// 账号 /// </summary> public string UserNa 阅读全文
摘要:
1.安装NuGet包SqlSugarCore 2.建立SqlSugarCore服务注入扩展 public static IServiceCollection AddSqlSugar(this IServiceCollection services, IConfiguration configurat 阅读全文
摘要:
原因: 随着 .NET Core 3.0 发布,许多 ASP.NET Core 程序集不再作为包发布到 NuGet。 而是改为将这些程序集包含在通过.NET Core SDK 和运行时安装程序安装的 Microsoft.AspNetCore.App 共享框架中。 自 .NET Core 3.0 起, 阅读全文
摘要:
安装扩展ResXManager用于管理本地化资源文件 添加资源文件Resource.resx 使用工具ResXManager增加其他资源文件,具体参考ResXManager使用 注册本地化 public static class ServiceCollectionExtensions { publi 阅读全文