我正在尝试将ExtJS与Asp.Net MVC一起使用,到目前为止一切正常. (对ExtJS的好工作)
为了简化操作,我需要一些帮助将数据从.net返回到ExtJS.
为了简化操作,我需要一些帮助将数据从.net返回到ExtJS.
ExtJS希望在JSON Respone中看到成功标志以及其他数据.
样本预期响应格式是类似的
{success:true,data:{id:3,text:“hello world}}
所以,使用linq2sql或ado.net数据集作为模型对象,你们有没有想过如何轻松地以这种格式返回数据.
就像是
public JsonResult Index() { result.success= true; result.obj = repository.FindAllUsers(); return Json(result) }
那顺便说一下会有用吗?如果我有一个具有bool成功和对象数据属性的ExtJSResult类?
提前致谢
解决方法
试试这个……
public JsonResult Index() { var json = new { success = true,data = from user in repository.FindAllUsers().AsQueryable() select new { id = user.Id,name = user.Name,... } }; return Json(json); }