你應該任意對象返回JsonResult
(或實物,如果你已經創建了一個)匹配的數據表的預期收益簽名。喜歡的東西:
var result = // do something, get a list of stuff etc
return new JsonResult {
// `Data` is the thing that turns into your json response
Data = new {
error = result.Success ? "" : result.Message,
fieldErrors = new bool[0], // just to fake an empty array
data = new bool[0],
aaData = result.Success ? result.Items.Select(o => new {
//use arbitrary column names if you've specified them in config with `aoColumns` and `mDataProp`, see comment below
OrderID = o.ID,
ChannelID = o.Partner,
ReferenceKey = o.PartnerReferenceKey,
o.CustomerEmail,
Status = o.Status.ToString(),
Value = o.Total,
CreatedOn = o.CreatedOn.ToString("yyyy-MM-dd HH:mm:ss"), // provide in interpretable format
}) : (object) new bool[0], // must return an empty list in order for it to understand errors
iTotalRecords = result.TotalCount,
iTotalDisplayRecords = result.TotalCount, // should be different if filtering
sEcho // this is provided by the request, not sure what it means...
}
};
對於從Ajax響應自定義列名,你要檢討:
但我使用的數據表,這樣不可用的 – user279stack 2013-03-14 05:05:35
我們在客戶端使用jauery數據表我們只需要發送數據表格中的錯誤 – user279stack 2013-03-14 05:16:56