有关jquery插件Flexigrid的问题

JavaScript code
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  $( '#flexigridtable' ).flexigrid({
                 url:  'GetFlexigridData.ashx' ,
                 dataType:  'json' ,
                 colModel : [
                 { display:  'productId' , name:  'productId' , width: 60, sortable:  true , align:  'center'  },
                 { display:  'productlistName' , name:  'productName' , width: 60, sortable:  true , align:  'center'  },
                 { display:  'specification' , name:  'specification' , width: 140, sortable:  true , align:  'left'  },
                 { display:  'merchantCode' , name:  'merchantCode' , width: 120, sortable:  true , align:  'left'  },
                 { display:  'sellingStore' , name:  'sellingStore' , width: 130, sortable:  true , align:  'left' , hide:  false  },
                 { display:  'priceRange' , name:  'priceRange' , width: 80, sortable:  true , align:  'right'  },
                 { display:  'repertory' , name:  'repertory' , width: 80, sortable:  true , align:  'right'  },
                 { display:  'updateTime' , name:  'updateTime' , width: 80, sortable:  true , align:  'right'  }
                 ]
                
             });


上面是我的js代码。
C# code
?
1
2
3
4
5
6
7
8
9
  public  void  ProcessRequest(HttpContext context)
         {
             context.Response.ContentType =  "text/plain" ;
 
             DataModelDataContext db =  new  DataModelDataContext();
             List<Products> list = db.Products.ToList();
             string  jsonStr = JsonConvert.SerializeObject(list);
             context.Response.Write(jsonStr);
         }

上面是我的后台取数据代码,是asp.net的一般处理程序,返回的数据是json字符串,如下:

[{"productId":1,"productName":"ipad","specification":"黑色  8G","merchantCode":"Y001201","sellingStore":"淘宝一电(80)","priceRange":"4000~5000","repertory":80,"updateTime":"2013-06-21T17:06:39.547"},
{"productId":2,"productName":"iphone","specification":"黑色  8G","merchantCode":"Y101201","sellingStore":"拍拍一店(60)","priceRange":"3500~4000","repertory":80,"updateTime":"2013-06-21T17:07:46.913"},
{"productId":3,"productName":"ipad","specification":"黑色  8G","merchantCode":"Y001201","sellingStore":"淘宝一电(80)","priceRange":"4000~5000","repertory":80,"updateTime":"2013-06-21T17:06:39.547"}]

我的问题是为什么前台不显示我的数据内容:
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值