日期:2014-05-17  浏览次数:20524 次

easyui的datagrid无法绑定数据
easyui无法绑定数据:
前台代码:
<table id="dg" title="My Users" class="easyui-datagrid" style="width: 700px; height: 250px"
        url="/SysGroup/Index" toolbar="#toolbar" pagination="true" rownumbers="true" fitcolumns="true"
        singleselect="true">
        <thead>
            <tr>
                <th field="firstname" width="50">
                    u_userno
                </th>
                <th field="lastname" width="50">
                    u_cname
                </th>
                
            </tr>
        </thead>
    </table>



后台代码:
        public ActionResult Index()
        {
            string ResponStr = "{\"total\":1,\"rows\":[";
            ResponStr += "{\"userid\":\"1\",\"u_userno\":\"j1\",\"u_cname\":\"jason\"}";
            ResponStr += "]}";
            Response.Write(ResponStr);
            return View("SysGroup");
        }


执行结果是在表格上面把json字符串显示出来了。求助
easyui?asp.net

------解决方案--------------------
public JsonResult Index()
{
    json(对象)
}
------解决方案--------------------
Index 是你这个页面的“入口”还是返回 View,

Table 的数据源应该对应另一个Action,另起一个方法返回 Json(对象)
------解决方案--------------------
url="/SysGroup/Index" ,这个能返回一个json数据么 ?