- 注册时间
- 2015-9-13
- 最后登录
- 1970-1-1
- 阅读权限
- 10
- 积分
- 100
- 精华
- 0
- 帖子
- 28
|
在查询的时候
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;
} |
|