博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ASP.NET MVC5+EF6+EasyUI 后台管理系统(7)-MVC与EasyUI DataGrid
阅读量:6606 次
发布时间:2019-06-24

本文共 1915 字,大约阅读时间需要 6 分钟。

本节知识点

为了符合后面更新后的重构系统,文章于2016-11-1日重写

EasyUI读取MVC后台Json数据

开始实现

我们的系统似乎越来越有趣了

首先从前端入手,开打View下面的Shared创建一个视图模版(母版页)

 
_Index_Layout.cshtml

以后我们系统用到的index视图基本要引用这个模版

 
index.cshtml

在SysSampleController添加GetList方法给视图的AJAX使用

 
View Code

预览一下效果

Json的格式

其实有心的童鞋会发现下载的easyui包里面有个demo文件,我们打开datagrid样例的文件夹找到

{
"total":28,"rows":[ {
"productid":"FI-SW-01","productname":"Koi","unitcost":10.00,"status":"P","listprice":36.50,"attr1":"Large","itemid":"EST-1"}, {
"productid":"K9-DL-01","productname":"Dalmation","unitcost":12.00,"status":"P","listprice":18.50,"attr1":"Spotted Adult Female","itemid":"EST-10"}, {
"productid":"RP-SN-01","productname":"Rattlesnake","unitcost":12.00,"status":"P","listprice":38.50,"attr1":"Venomless","itemid":"EST-11"}, {
"productid":"RP-SN-01","productname":"Rattlesnake","unitcost":12.00,"status":"P","listprice":26.50,"attr1":"Rattleless","itemid":"EST-12"}, {
"productid":"RP-LI-02","productname":"Iguana","unitcost":12.00,"status":"P","listprice":35.50,"attr1":"Green Adult","itemid":"EST-13"}, {
"productid":"FL-DSH-01","productname":"Manx","unitcost":12.00,"status":"P","listprice":158.50,"attr1":"Tailless","itemid":"EST-14"}, {
"productid":"FL-DSH-01","productname":"Manx","unitcost":12.00,"status":"P","listprice":83.50,"attr1":"With tail","itemid":"EST-15"}, {
"productid":"FL-DLH-02","productname":"Persian","unitcost":12.00,"status":"P","listprice":23.50,"attr1":"Adult Female","itemid":"EST-16"}, {
"productid":"FL-DLH-02","productname":"Persian","unitcost":12.00,"status":"P","listprice":89.50,"attr1":"Adult Male","itemid":"EST-17"}, {
"productid":"AV-CB-01","productname":"Amazon Parrot","unitcost":92.00,"status":"P","listprice":63.50,"attr1":"Adult Male","itemid":"EST-18"}]}

我们看到示例中的Demo Json格式,后台必须返回符合Easyui读取的Json格式数

本文转自ymnets博客园博客,原文链接:http://www.cnblogs.com/ymnets/p/3424945.html,如需转载请自行联系原作者
你可能感兴趣的文章
linux——常用命令用法介绍
查看>>
SylixOS中EEPROM设备驱动实现
查看>>
轻松实现复杂表格报表–ActiveReports .NET报表控件签约赛捷软件
查看>>
Apache CXF 学习-使用MTOM来让客户端接收从服务端发过来的带附件的SOAP消息
查看>>
桌面虚拟化最佳实践3—存储规划(上)
查看>>
中间件
查看>>
webservice 接口的调用
查看>>
【论文阅读】Accelerating the Super-Resolution Convolutional Neural Network
查看>>
组装树形结构循环寻找父子关系速度过慢的一种解决方案
查看>>
谷歌Fuchsia系统将支持运行安卓App
查看>>
BigDecimal 比较大小
查看>>
一些你所不知道的VS Code插件
查看>>
xwiki系统
查看>>
Mysql InnoDB 行锁和表锁介绍
查看>>
利用vertical-align实现水平垂直居中弹窗
查看>>
JeeSite的Excel导入、导出、支持大数据量,使用annotation最小化配置
查看>>
微服务随笔
查看>>
发生NoClassDefFoundError的可能之一
查看>>
JS基于正则实现数字千分位用逗号分割
查看>>
七月SSL行业新闻回顾
查看>>