c# – ExtJS:如何使用asp.net mvc返回数据的json成功

前端之家收集整理的这篇文章主要介绍了c# – ExtJS:如何使用asp.net mvc返回数据的json成功前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试将ExtJS与Asp.Net MVC一起使用,到目前为止一切正常. (对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);
}
原文链接:https://www.f2er.com/csharp/243611.html

猜你在找的C#相关文章