二分之一

Just Jason's Blog

Easyui实现datagrid绑定JS本地对象(可不请求URL,不生成JSON)

初次接触easyui,使用datagrid时绑定数据时,大多人骂他的设计很烂,一定要在URL中指定一个json文件,或者请求一个服务器端动态生成的json程序,而在实际的开发中,后台程序很少愿意给到完全符合前台开发理想中的数据结构。

其实不然,我们接触一个新的东西时,遇到问题,总是习惯于到搜索引擎去寻求答案,而不愿意从API中找到答案,当然大家没这么多时间耗在这么长的英文API中。

easyui,datagrid使用,其实可以读取JS本地拼接组合的JSON对象的。

<table id="tt"></table>
//仅做一些基本的设置,不设置URL属性
$('#tt').datagrid({
    width:300,
    heigth:"auto",
    fitColumns:true
});
//绑定本地的JS对象
var jsdata = {total:1,rows:[{name:"",value:""}]}
$('#tt').datagrid("loadData",jsdata);

jQuery EasyUI中文帮助手册(API):http://www.phptogether.com/juidoc/ jQuery EasyUI英文官方手册(API):http://www.jeasyui.com/documentation/index.php

最后修改时间:2014年9月8日星期一晚上8点57