jQuery MiniUI

标题: 查询 [打印本页]

作者: 孙斌    时间: 2015-9-15 07:43:53     标题: 查询

在查询的时候
  function search()
    {
        var key = mini.get("key").getValue();
        $.ajax({
            url: "/home/show",
            data: { key: key },  
            success: function (text) {
                 我已经获取到了一个json 字符串    让他传给页面  让他刷新显示呢
            }
        })
    }


   public string   show()
        {
            string key = Request["key"];
            string where = "";
            if(key != null)
            {
                where = "name='" + key + "'";
            }
        
                List<model.Class1> li = sql.GetListModel<model.Class1>("Class1", "*", where);
                string json = sql.ListToJsonString<model.Class1>(li);

                int count = li.Count();
                //转依字符串
                json = "{\"total\":" + count + ",\"data\":" + json + "}";
                return json;
        }
作者: dforce    时间: 2015-9-15 09:31:39

你这是自己用ajax获取静态数据,可以用grid.setData(data)更新表格数据
我们默认的查询请参考示例,使用grid.load({key:value})传递参数的




欢迎光临 jQuery MiniUI (http://miniui.com/discuss/) Powered by Discuz! X2