MVC 快速开发框架
ASP.NET MVC 快速开发框架之 SqlSugar+SyntacticSugar+JQWidgetsSugar+jqwidgets
jqwidgets.js:
是一个功能完整的框架,它具有专业的可触摸的jQuery插件、主题、输入验证、拖放插件、数据适配器,内置WAI-ARIA(无障碍网页应用)可访问性、国际化和MVVM模式支持。jQWidgets 为搭建专业网站和开发移动应用程序提供了一个全面的解决方案。它完全基于开放的标准和技术,如 HTML5、CSS、Javascript和jQuery。jQWidgets能实现响应式web开发,可以帮助您创建在桌面、平板电脑和智能手机上看起来很漂亮的应用程序和网站。
无论是美感还是功能都比easyui更胜一筹,代码开源使用收费。
SyntacticSugar.dll:
功能齐全包含验证、通用扩展函数、类型转换、文件上传、以及大量C#语法糖的一款工具类库。
源码地址:https://github.com/sunkaixuan/SyntacticSugar
SqlSugar.dll:
是一款基于MSSQL的轻量级、高性能、简单易用的ORM框架
教程及源码下载地址: http://www.cnblogs.com/sunkaixuan/p/4649904.html
JQWidgetsSugar.dll (本贴的重点)
基于jqwidgets.js 的C#封装类库 ,目前只完成了grid部分 ,我的所有GIT项目会在以后项目开发中持续更新
效果图:
C#代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using SqlSugar; using DAL; using JQWidgetsSugar; using Models; using SyntacticSugar; namespace NetJQWidgets.Controllers { public class GridController : Controller { public ActionResult Index() { var adp = new GridDataAdapterSource(); adp.url = "/Grid/Data" ; var gc = new GridConfig(); gc.gridbuttons = new List<GridButton>() { new GridButton(){ click= "add" , name= "addbutton" , icon= "jqx-icon-plus" , title= "添加" }, new GridButton(){ click= "edit" , name= "editbutton" , icon= "jqx-icon-edit" , title= "编辑" }, new GridButton(){ click= "del" , name= "delbutton" , icon= "jqx-icon-delete" , title= "删除" } }; gc.pageSize = 20; gc.width = "80%" ; gc.columns = new List<GridColumn>(){ new GridColumn(){ text= "编号" , datafield= "id" , width= "40px" , cellsalign=AlignType.left,datatype=Datatype.dataint }, new GridColumn(){ text= "名称" , datafield= "name" , cellsalign=AlignType.left,datatype=Datatype.datastring }, new GridColumn(){ text= "产品名" , datafield= "productname" , cellsalign=AlignType.left,datatype=Datatype.datastring }, new GridColumn(){ text= "数量" , datafield= "quantity" , cellsalign=AlignType.right , datatype=Datatype.dataint }, new GridColumn(){ text= "创建时间" , datafield= "date" , cellsformat= "yyyy-MM-dd" ,cellsalign=AlignType.right, datatype=Datatype.datadate } }; var grid = JQXGrid.BindGrid( "#netgrid" , adp, gc); ViewBag.validationBind = ValidationSugar.GetBindScript( "validate_key_grid_index" ); return View(grid); } [HttpDelete] public JsonResult Del( int id) { using (SqlSugarClient db = SugarDao.GetInstance()) { ActionResultModel< string > model = new ActionResultModel< string >(); model.isSuccess = db.Delete<GridTable>(id); model.respnseInfo = model.isSuccess ? "删除成功" : "删除失败" ; return Json(model); } } [HttpPost] public JsonResult Add(GridTable gt) { using (SqlSugarClient db = SugarDao.GetInstance()) { string message = string .Empty; var isValid = ValidationSugar.PostValidation( "validate_key_grid_index" , out message); ActionResultModel< string > model = new ActionResultModel< string >(); if (isValid) //后台验证数据完整性 { model.isSuccess = db.Insert(gt) != DBNull.Value; model.respnseInfo = model.isSuccess ? "添加成功" : "添加失败" ; } else { model.isSuccess = false ; model.respnseInfo = message; } return Json(model); } } [HttpPut] public JsonResult Edit(GridTable gt) { using (SqlSugarClient db = SugarDao.GetInstance()) { ActionResultModel< string > model = new ActionResultModel< string >(); string message = string .Empty; var isValid = ValidationSugar.PostValidation( "validate_key_grid_index" , out message); if (isValid) //后台验证数据完整性 { model.isSuccess = db.Update<GridTable>(gt, it => it.id == gt.id); model.respnseInfo = model.isSuccess ? "编辑成功" : "编辑失败" ; } else { model.isSuccess = false ; model.respnseInfo = message; } return Json(model); } } [OutputCache(Duration = 0)] public JsonResult Data(GridSearchParams pars) { using (SqlSugarClient db = SugarDao.GetInstance()) { if (pars.sortdatafield == null ) { //默认按id降序 pars.sortdatafield = "id" ; pars.sortorder = "desc" ; } Sqlable sable = db.Sqlable().Form<GridTable>( "g" ); //查询表的sqlable对象 var model = JQXGrid.GetWidgetsSource<Models.GridTable>(sable, pars); //根据grid的参数自动查询 return Json(model, JsonRequestBehavior.AllowGet); } } } } |
Razor视图
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
|
@{ ViewBag.Title = "Index" ; Layout = "~/Views/Shared/_Layout.cshtml" ; } @ using JQWidgetsSugar @section head{ <script src= "/Content/My97DatePickerBeta/My97DatePicker/WdatePicker.js" type= "text/javascript" ></script> <link href= "/Content/My97DatePickerBeta/My97DatePicker/skin/WdatePicker.css" rel= "stylesheet" type= "text/css" /> <script src= "/Content/jquery-validation-1.13.1/dist/jquery.validate.min.js" type= "text/javascript" ></script> <link href= "/Content/jquery-validation-1.13.1/validation.sugar.css" rel= "stylesheet" type= "text/css" /> <script src= "/Content/jquery-validation-1.13.1/validation.sugar.js" type= "text/javascript" ></script> <script type= "text/javascript" > //添加 function add(row) { save(row, true ); } //编辑 function edit(row) { save(row, false ); } //删除 function del(row) { if (row == null ) { jqxAlert( '请选择一条记录!' ) } else { jqxDelete({ gridSelector: "#netgrid" , url: "/Grid/Del" , data: { id: row.id } }); } } function save(row, isAdd) { var isEdit = !isAdd; if (isEdit) { if (row == null ) { jqxAlert( '请选择一条记录!' ) return ; } } //弹出框 jqxWindow( "#editbox" , isAdd? "添加" : "编辑" , 400, "auto" ); //美化 button $( "#editbox button" ).jqxButton(); //取消事件 $( '#cancel' ).unbind(); $( '#cancel' ). on ( 'click' , function (e) { $( "#editbox" ).jqxWindow( "close" ) }); if (isAdd) { //清空表单 $( "#frmtable" ).formClear(); } else { //格日化日期 row.date = $.convert.toDate(row.date, "yyyy-MM-dd" ) //通过JSON自动填充表单,也可以自已实现 $( "#frmtable" ).formFill({ data: row }) } //确定事件 $( '#save' ).unbind(); $( '#save' ). on ( 'click' , function (e) { factory.ajaxSubmit(function () { var url = isAdd ? "/grid/add" : "/grid/edit" ; var type = isAdd ? "post" : "put" ; $( "#frmtable" ).ajaxSubmit({ url: url, type: type, success: function (msg) { if (msg.isSuccess == false ) { jqxAlert(msg.respnseInfo); } $( "#netgrid" ).jqxDataTable( 'updateBoundData' ); $( "#editbox" ).jqxWindow( "close" ) }, error: function (msg) { console.log(msg); } }) }); }); } //绑定验证 $(function () { window.factory = new validateFactory($( "form" ), "<img src=\"/Content/jquery-validation-1.13.1/error.png\" />" ); factory.init(); }); </script> @Html.Raw(Model) } <div id= "netgrid" > </div> <div id= "editbox" class = "hide" > <div class = "savetable" > <form id= "frmtable" class = "form" > <table style= "table-layout: fixed; border-style: none;" > <tr> <td align= "right" > 名称: </td> <td align= "left" > <input id= "id" name= "id" type= "hidden" value= "0" /> <input id= "name" name= "name" type= "text" /> </td> </tr> <tr> <td align= "right" > 产品名: </td> <td align= "left" > <input id= "productname" name= "productname" type= "text" /> </td> </tr> <tr> <td align= "right" > 数量: </td> <td align= "left" > <input id= "quantity" name= "quantity" type= "text" /> </td> </tr> <tr> <td align= "right" > 时间: </td> <td align= "left" > <input id= "date" class = "Wdate" onclick= "WdatePicker()" name= "date" type= "text" /> </td> </tr> <tr> <td> </td> <td> <br /> <button id= "save" type= "button" > 保存</button> <button style= "margin-left: 5px;" type= "button" id= "cancel" > 取消</button> </td> </tr> </table> </form> </div> </div> @Html.Raw(ViewBag.validationBind) |
例子不是很难,就是最基本的增、删、查、改。
功能虽然简单但是也考虑到了很多问题比如: 前端加后端的双向验证、代码扩展性强、语法简洁、异常的处理等。
DEMO下载地址:https://github.com/sunkaixuan/JQWidgetsSugar
MVC 快速开发框架的更多相关文章
- ASP.NET MVC快速开发框架FastExecutor开发全过程感受及总结
困境 追溯到2018年5月份,是个炎热的夏天,毕业后1年7个月我提出了离职,原因是受不了原来公司过度的封装框架感觉一年多毫无进步与实施天天轰炸般的电话,偶然间出去面试了一次发现自己知识真的是比较局限, ...
- ASP.NET MVC 快速开发框架之 SqlSugar+SyntacticSugar+JQWidgetsSugar+jqwidgets(转)
jqwidgets.js: 是一个功能完整的框架,它具有专业的可触摸的jQuery插件.主题.输入验证.拖放插件.数据适配器,内置WAI-ARIA(无障碍网页应用)可访问性.国际化和MVVM模式支持. ...
- ASP.NET MVC 快速开发框架之 SqlSugar+SyntacticSugar+JQWidgetsSugar+jqwidgets
jqwidgets.js: 是一个功能完整的框架,它具有专业的可触摸的jQuery插件.主题.输入验证.拖放插件.数据适配器,内置WAI-ARIA(无障碍网页应用)可访问性.国际化和MVVM模式支持. ...
- ASP.NET MVC快速开发框架清新简洁界面设计,有兴趣可以模仿参考
软件的用户体验很重要,要抓住用户的心,这篇博文分享一下最近一个项目的UI设计. 我做UI设计是从用户的角度出发的,要去揣摩用户的习惯. 大部分用户都是使用windows操作系统,所以我这套软件的风格也 ...
- ASP.NET快速开发框架不得不做的几个功能、高大上档次后台管理UI界面
俗话说磨刀不误砍柴工,确实,一早上花一个小时去磨刀一天下来肯定能多砍很多柴.我们做软件开发也是同样的道理,有套好开发框架在手里,开发也是事半功倍.那么一套MVC快速开发框架至少得具有哪些功能才能帮我们 ...
- SlickOne -- 基于Dapper, Mvc和WebAPI 的快速开发框架
前言:在两年前,项目组推出了基于Dapper,Mvc和WebApi的快速开发框架,随着后续Slickflow产品的实践和应用,今再次对SlickOne项目做以回顾和总结.其目的是精简,持续改进,保持重 ...
- 快速开发框架,及库存管理系统,基于easyui框架和C#语言MVC、EntityFrameWork、T4模板技术。
快速开发框架,及库存管理系统,基于easyui框架和C#语言MVC.EntityFrameWork.T4模板技术. 产品界面如下图所示: 源码结构: 开放全部源码,如有需要请联系,QQ:1107141 ...
- SlickOne敏捷开发框架介绍(一) -- 基于Dapper, Mvc和WebAPI 的快速开发框架
前言:在两年前(最初发布时间:2013年1月9日(csdn),当前文章时间2015年11月10日),项目组推出了基于Dapper,Mvc和WebApi的快速开发框架,随着后续Slickflow产品的实 ...
- ASP.NET快速开发框架、这才是高大上档次后台管理UI界面
另外献上在<线体验Demo地址>希望大家也能从中得到一些启发.地址:http://121.40.148.178:8080/ . 用户名:guest,密码:123456QQ技术交流群:239 ...
随机推荐
- DIY.NETORM帧——技术储备(1)Attribute
1.他是什么 ? 首先.我们当然Attribute它是一类,以下是一msdn文档对它的描写叙述: 公共语言执行时同意你加入类似keyword的描写叙述声明,叫做attributes, ...
- Codeforces Round #264 (Div. 2) C Gargari and Bishops 【暴力】
称号: 意甲冠军:给定一个矩阵,每格我们有一个数,然后把两个大象,我希望能够吃的对角线上的所有数字.我问两个最大的大象可以吃值. 分析:这种想法是暴力的主题,计算出每一格放象的话能得到多少钱,然后求出 ...
- hdu 2049 别easy列(4)——测试新郎
问题: 使用double定义的数量和long数定义19-20出现分歧,原因不明.求大公社. 这个问题需要用long,否则,只是通过,这应该纠结了很久. 问题是乘以一个交错的思想相结合. 不easy系列 ...
- SpringMVC单文件上传、多文件上传、文件列表显示、文件下载(转)
林炳文Evankaka原创作品.转载请注明出处http://blog.csdn.net/evankaka 本文详细讲解了SpringMVC实例单文件上传.多文件上传.文件列表显示.文件下载. 本文工程 ...
- Microsoft Visual C++ Runtime Library Runtime Error解决的方式
打开浏览器时,出现Microsoft Visual C++ Runtime Library Runtime Error错误,初步预计是软件冲突,可能有多种出错的方式,我的是浏览器自己主动关闭. 一. ...
- 【DP|多重背包可行性】POJ-1014 Dividing
Dividing Time Limit: 1000MS Memory Limit: 10000K Description Marsha and Bill own a collection of mar ...
- SQLSERVER2014的内存优化表
SQL Server 2014中的内存引擎(代号为Hekaton)将OLTP提升到了新的高度. 现在,存储引擎已整合进当前的数据库管理系统,而使用先进内存技术来支持大规模OLTP工作负载. 就算如此, ...
- 管理Android通信录
Android提供了Contacts应用程序来管理联系人,并且Android系统还为联系人管理提供了ContentProvider,这就同意其他应用程序以ContentResolver来管理联系人数据 ...
- Hdu 3341 Lost's revenge (ac+自己主动机dp+hash)
标题效果: 举个很多种DNA弦,每个字符串值值至1.最后,一个长字符串.要安排你最后一次另一个字符串,使其没事子值和最大. IDEAS: 首先easy我们的想法是想搜索的!管她3721..直接一个字符 ...
- Lua 脚本语法说明(转)
Lua脚本语法说明(增加lua5.1部份特性) Lua 的语法比较简单,学习起来也比较省力,但功能却并不弱. 所以,我只简单的归纳一下Lua的一些语法规则,使用起来方便好查就可以了.估计看完了,就懂得 ...