上一页 1 2 3 4 5 6 7 ··· 10 下一页
摘要: _logger.LogInformation("你访问了首页"); _logger.LogWarning("警告信息"); _logger.LogError("错误信息"); 使用DI 直接可以使用对象。 日志级别:Trace -》Debug-》 Information -》Warning-》 Er 阅读全文
posted @ 2020-06-16 14:19 Aaron_Net 阅读(621) 评论(0) 推荐(0) 编辑
摘要: Netcore内置IOC容器,services.AddSingleton<>, 就是往内置IOC容器里配置一个单例,将接口跟实现映射在一起, 以后每次使用构造函数注入这个IProductRepository接口,都会获得这个单例对象! 不需要new ProductRepository() DI -- 阅读全文
posted @ 2020-06-16 11:29 Aaron_Net 阅读(1034) 评论(0) 推荐(1) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv 阅读全文
posted @ 2020-06-12 16:18 Aaron_Net 阅读(116) 评论(0) 推荐(0) 编辑
摘要: NET CORE 3.1多语言 控制器多语言ConfigureServices 1 services.AddLocalization(o => { o.ResourcesPath = "Resources"; }); services.AddMvc(); Configure 2 IList<Cult 阅读全文
posted @ 2020-06-05 20:30 Aaron_Net 阅读(217) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv 阅读全文
posted @ 2020-04-16 11:23 Aaron_Net 阅读(973) 评论(0) 推荐(0) 编辑
摘要: model里面添加字段 阅读全文
posted @ 2019-08-21 09:07 Aaron_Net 阅读(473) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv 阅读全文
posted @ 2019-06-27 19:55 Aaron_Net 阅读(259) 评论(0) 推荐(0) 编辑
摘要: @{ ViewData["Title"] = "Home Page"; Layout = null; } ... 阅读全文
posted @ 2019-06-21 15:13 Aaron_Net 阅读(219) 评论(0) 推荐(0) 编辑
摘要: /// /// 生成验证码图片 /// public void CreateCheckCodeImage() { string checkCode = VerficationCodeSrc(5); if (checkCode == null || checkCode.Trim() == String.Empty) return; //string checkCode = "asfd2"... 阅读全文
posted @ 2019-05-24 09:05 Aaron_Net 阅读(154) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>分页</title> <style> *{margin: 0;padding: 0;} 阅读全文
posted @ 2019-05-17 16:26 Aaron_Net 阅读(145) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 10 下一页