2014-03-01 51 views

回答

0

在控制器 您需要使用匿名對象返回JSON數據

var result = // object which contain result 
var jsonData = result.select(x=>new{ 
    PropertyA = x.A, 
    PropertyB = x.B, 
    PropertyC = x.C, 
}); 

return Json(jsonData, JsonRequestBehavior.AllowGet) 

在功能的JavaScript

success:function(data){ 
$.each(data,function(i,data){ 
    //loop and insert your table 
    data.PropertyA //get data 
}) 
} 
相關問題