使用 ASP.NET MVC 的 JsonResult 类返回多个对象
是否可以使用 ASP.NET MVC 的 JsonResult 类来多个对象...这是一个控制器方法,它返回我的记录的 json 对象,但我也想传递计数值...
var materials = consRepository.FindAllMaterials().AsQueryable();
var count = materials.Count();
var results = new PagedList<MaterialsObj>(materials, currentPage-1, pageSize);
return Json(results);
如何返回计数以及 <来自 asp.net mvc 控制器的代码>结果...
Is it possible to Multiple Objects Using ASP.NET MVC'S JsonResult Class.... Here is a controller method which returns json object of my records but i also want to pass the count value....
var materials = consRepository.FindAllMaterials().AsQueryable();
var count = materials.Count();
var results = new PagedList<MaterialsObj>(materials, currentPage-1, pageSize);
return Json(results);
How to return count along with the results
from asp.net mvc controller....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
创建一个匿名类型并对其进行 JSON 处理怎么样?
例如,
您可以像以前一样在脚本中评估 json 字符串,但只需查询评估结果上的 Count 和 Results 属性。
How about creating an anonymous type and JSON'ing that?
e.g.
You can then eval your json string in your script as before but just query the Count and Results properties on your eval result.
有一种方法可以发送动态识别要发送的多个对象。 查看此内容。
There is a way to send multiple objects which are dynamically identified to send. See this.
在 C# 部分:
使用新的关键工作
在 jquery 端:
In C# part:
Using new keywork
In jquery side :