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 前台遍历的主要内容,如果未能解决你的问题,请参考以下文章

datatable 前台和后台数据格式

MVC控制器返回给视图一个datatable,在视图中咋遍历显示这个数据表的内容啊

mvc4 如何返回Json数据并且 前台中怎么取它后台返回的数据

MVC Razor 前台执行后台方法

JAVA spring MVC 前台如何取得后台返回的map类型的数据?

C#中“类似GridView等控件”的前台显示与后台数据变化之间的关系