.NET CORE
文章平均质量分 79
warrior21st
这个作者很懒,什么都没留下…
展开
-
.NET CORE上传文件(AJAX形式)
后台Action: [HttpPost] public string UploadFile() { if (Request.Form.Files.Count == 0) return GetFalseResult("未检测到文件"); string path原创 2017-04-01 11:44:55 · 3819 阅读 · 0 评论 -
ASP.NET CORE CACHE的使用(含MemoryCache,Redis)
定义通用工具类 :CacheUntity public class CacheUntity { private static ICacheHelper _cache = new RedisCacheHelper();//默认使用Redis private static bool isInited = false; p原创 2017-03-17 11:55:47 · 4824 阅读 · 0 评论