- 注册时间
- 2014-1-14
- 最后登录
- 2014-1-14
- 阅读权限
- 10
- 积分
- 5
- 精华
- 0
- 帖子
- 1
|
本帖最后由 smseo 于 2014-1-14 14:04 编辑
datagrid 查询问题
- function search() {
- var key = mini.get("key").getValue();
- $.ajax({
- url: "<{spUrl c=user a=seach}>",
- data: { data: key },
- type: "post",
- success: function (text) {
- grid.reload();
- ///=========text====查询出来 是JSON格式
- },
- error: function (jqXHR, textStatus, errorThrown) {
- alert(jqXHR.responseText);
- }
- });
-
- }
复制代码
像这样 用AJAX 查询的数据 加载不到 datagrid里啊??
|
|