ASP.NET MVC3.0中同一View如何返回多个Model或数据集

在控制器里定义一个Dictionary 泛型类,再把要用到的不同模型加进去

 controller:

    public ActionResult Index() {   


IDictionary<string, object> test = new Dictionary<string, object>();
test.Add("StudentList", new List<StudentInfo>());
return View(test);
}

 view视图:

@model IDictionary<string, object> 
@{Layout = null; }
<!DOCTYPE html>
<html>
<head>
<title>我的个人主页</title>
</head>
<body>
<ul style="list-style: none; margin-left: 10px;">
@foreach (var m in (IList<EnglishDiary.Models.StudentInfo>)Model["StudentList"]) {
<li>@m.StuID</li>
<li>@m.StuName</li>
}
</ul>
</body>
</html>

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。