摘要: 在mvc视图中大多都是用强类型进行数据的绑定,一般下拉框都是使用DropDown绑定枚举。参考:https://www.cnblogs.com/CreateMyself/p/5424894.html 但是在使用layui框架的select中,如果视图还是用强类型进行数据绑定将会遇到以下两种情况 下拉 阅读全文
posted @ 2022-02-15 23:47 weichangk 阅读(521) 评论(0) 推荐(0) 编辑
摘要: layui框架源码自带验证 Form = function(){ this.config = { verify: { required: [ /[\S]+/ ,'必填项不能为空' ] ,phone: [ /^1\d{10}$/ ,'请输入正确的手机号' ] ,email: [ /^([a-zA-Z0 阅读全文
posted @ 2022-02-15 23:46 weichangk 阅读(1091) 评论(0) 推荐(0) 编辑
摘要: WebApiClientCore 集高性能高可扩展性于一体的声明式http客户端库,特别适用于微服务的restful资源请求,也适用于各种畸形http接口请求。 参考:https://github.com/dotnetcore/WebApiClient 记录笔记起因: .net core mvc 项 阅读全文
posted @ 2022-02-15 23:45 weichangk 阅读(466) 评论(0) 推荐(0) 编辑
摘要: 客户端使用WebApiClient.JIT库时,定义调用接口时参数JsonPatchDocument来自引用Microsoft.AspNetCore.JsonPatch。 [JsonReturn] public interface IUserApi : IHttpApi { [HttpPatch(" 阅读全文
posted @ 2022-02-15 23:44 weichangk 阅读(215) 评论(0) 推荐(0) 编辑
摘要: ASP.NET MVC异步提交表单 引用相关js文件 <script src="~/lib/jquery/dist/jquery.js"></script> <script src="~/lib/jquery-ajax-unobtrusive/jquery.unobtrusive-ajax.min. 阅读全文
posted @ 2022-02-15 23:42 weichangk 阅读(65) 评论(0) 推荐(0) 编辑