如何在asp.net mvc中添加json结果的视图?

发布于 2024-08-30 17:14:38 字数 370 浏览 5 评论 0原文

我从控制器返回了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

阳光的暖冬 2024-09-06 17:14:38

如果返回 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文