上一页 1 2 3 4 5 6 7 8 9 10 ··· 34 下一页
摘要: NET7下的WEB API示例 [Route("api/[controller]")] [ApiController] public class ShopADController : ControllerBase { private readonly IRepository<Model.ShopAD 阅读全文
posted @ 2023-08-04 09:30 牛腩 阅读(36) 评论(0) 推荐(0) 编辑
摘要: ASP.NET CORE下日志NLOG使用 摘自《深入浅出ASP.NET CORE》 NUGET:NLog.Web.AspNetCore 4.9.0 根目录下nlog.config <?xml version="1.0" encoding="utf-8"?> <nlog xmlns="http:// 阅读全文
posted @ 2023-08-01 11:24 牛腩 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 设置轮播图的高度和宽度一样 不能用height:100%, 只能是页面加载后取当前窗口宽度,再设置样式高度为取到的值 this.winWidth = uni.getWindowInfo().windowWidth console.log("当前窗口宽度:"+this.winWidth); <swip 阅读全文
posted @ 2023-07-30 20:40 牛腩 阅读(16) 评论(0) 推荐(0) 编辑
摘要: NET7下EFCORE的通用增删查改类 代码摘录自《深入浅出ASP.NET CORE》 /// <summary> /// 所有仓储的约定,此接口仅作为约定,用于标识他们 /// </summary> /// <typeparam name="TEntity">传入仓储的实体模型</typepara 阅读全文
posted @ 2023-07-27 21:39 牛腩 阅读(159) 评论(0) 推荐(0) 编辑
摘要: NET7下显示验证码 nuget:Zkweb.system.drawing mac 下显示验证码还得 nuget:runtime.osx.10.10-x64.CoreCompat.System.Drawing public class VierificationCodeServices { /// 阅读全文
posted @ 2023-07-27 07:49 牛腩 阅读(13) 评论(0) 推荐(0) 编辑
摘要: ztree分类页面代码 后台代码: [Area("Adnn1n")] public class CategoryController : BaseController { private readonly DAL.Interface.ICategory dal; public CategoryCon 阅读全文
posted @ 2023-07-26 20:12 牛腩 阅读(8) 评论(0) 推荐(0) 编辑
摘要: kendo的下拉框树示例 后台代码: public static string GetTreeJson_kendo(List<Category> list) { List<TreeNode_kendo> list_return = new List<TreeNode_kendo>(); var to 阅读全文
posted @ 2023-07-26 19:02 牛腩 阅读(52) 评论(0) 推荐(0) 编辑
摘要: NET7中简单的登录判断基类 public class BaseController : Controller { public override void OnActionExecuting(ActionExecutingContext context) { base.OnActionExecut 阅读全文
posted @ 2023-07-26 10:27 牛腩 阅读(19) 评论(0) 推荐(0) 编辑
摘要: NET7下取客户IP WEB层建立以下类: //控制器中直接用即可取IP ViewBag.ip = HttpContext.GetClientIP(); public static class HttpContextExtension { public static string GetClient 阅读全文
posted @ 2023-07-26 03:12 牛腩 阅读(51) 评论(0) 推荐(0) 编辑
摘要: windows用户态程序高效排错 256页 2007年12月第一次印刷 20MB 阅读全文
posted @ 2023-07-18 14:38 牛腩 阅读(14) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 34 下一页