asp.net mvc 如何将controller 里一个action 返回值为list<>的值输出到view

 我来答
山米须
2012-07-29 · TA获得超过143个赞
知道小有建树答主
回答量:200
采纳率:100%
帮助的人:97.5万
展开全部
我的做法,希望对你有帮助:
在controller中:return View(myRole.ToList());
在view文件开头加上:@model IEnumerable<LTXYCallCenter.Models.Role>,注意 IEnumerable.
使用(定义了一个叫role的model):
@foreach(var role in Model){
<tr class="trBody">
<td><input type="radio" name="beSelected" groupname="beRadio" /></td>
<td class="tdCurrentID" value="@role.RoleID">@Html.DisplayFor(roleID=>role.RoleID)</td>
<td>@Html.DisplayFor(roleCode=>role.RoleCode)</td>
<td>@Html.DisplayFor(roleName=>role.RoleName)</td>
<td>@Html.DisplayFor(roleType=>role.RoleType)</td>
<td>@Html.DisplayFor(roleGrade=>role.RolePermitGrade)</td>
</tr>
}
画角连城
2012-07-28 · TA获得超过773个赞
知道小有建树答主
回答量:224
采纳率:0%
帮助的人:307万
展开全部
action里使用:return View(List<>);,View的Page页面指令Inherits属性值设置为:ViewPage<List<>>,则View的Modal属性的返回值即为List<>。
当然也可以 使用ViewData和TempData集合来传递。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式