MVC 后台DataTable 前台遍历
Posted 幽冥狂_七
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MVC 后台DataTable 前台遍历相关的知识,希望对你有一定的参考价值。
/// <summary> /// 多级审批流展示 /// </summary> /// <returns></returns> public ActionResult AddMoreflow() { string userid = CommConst.CurrentAccountId; DataSet ds = CheckFlowService.LCheckFlowBLL.GetNowFlowList(userid); DataTable dt = ds.Tables[0]; return View(dt); }
前台
@using System.Data; @foreach (DataRow item in Model.Rows) { <table class="table table-bordered"> <tr> <td>流程提交人</td> <td>@item["formid"]</td> <td>处理状态</td> <td>@item["state"]</td> </tr> <tr> <td>内容</td> <td colspan="3">@item["checkcontent"]</td> </tr> <tr> <td>时间</td> <td colspan="3">@item["checkinserttime"]</td> </tr> </table> }
以上是关于MVC 后台DataTable 前台遍历的主要内容,如果未能解决你的问题,请参考以下文章
MVC控制器返回给视图一个datatable,在视图中咋遍历显示这个数据表的内容啊
mvc4 如何返回Json数据并且 前台中怎么取它后台返回的数据