如何在asp.net mvc中添加json结果的视图?
我从控制器返回了 json 结果,但是如何添加使用此 json 结果的视图。
public class MaterialsController : Controller
{
ConstructionRepository consRepository = new ConstructionRepository();
public JsonResult Index()
{
var materials = consRepository.FindAllMaterials().AsQueryable();
return Json(materials);
}
}
如何向其添加视图?任何建议...
I returned json result from a controller but how can i add a view that uses this json result..
public class MaterialsController : Controller
{
ConstructionRepository consRepository = new ConstructionRepository();
public JsonResult Index()
{
var materials = consRepository.FindAllMaterials().AsQueryable();
return Json(materials);
}
}
How to add a view to this? Any suggestion...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果返回 JsonResult 视图将不会附加到它。发送到浏览器的将是纯 Json。
但是,您可以使用 Asp.Net 客户端模板或 JQuery 客户端模板来使用此 Json 呈现视图。示例
http://jtemplates.tpython.com/
http://weblogs.asp.net/dwahlin /archive/2009/05/03/using-jquery-with-client-side-data-binding-templates.aspx
If are returning JsonResult view will not be attached to it. It will be pure Json that will be sent to the browser.
However you can use Asp.Net ClientSide template or JQuery Client Templates to render view using this Json. An example
http://jtemplates.tpython.com/
http://weblogs.asp.net/dwahlin/archive/2009/05/03/using-jquery-with-client-side-data-binding-templates.aspx