如何使用mvc在视图中将多个模型数据显示到单个Html表中

时间:2018-05-07 16:47:16

标签: asp.net-mvc

这些是两个模型

public class Employee
{
    public int Id { get; set; }
    public string EmployeeName { get; set; }
    public string City { get; set; }
    public string MobileNo { get; set; }
    public string Email { get; set; }
    public int DepartmentId { get; set; }
}

public class Department
{
    public int DepartmentId { get; set; }
    public string DepartmentName { get; set; }
}

现在如何使用ViewModel

将两个模型数据显示到视图内的单个Html表中

1 个答案:

答案 0 :(得分:0)

使用model.addattribute(“obj1_key”,you_object1)等等,您的处理程序方法必须返回新的ModelAndView(“your_page_name”)。在你的jsp页面中,你可以使用EL来显示它们,如$ {obj1_key} ...