如何将模型和视图日期传递给PartialView?
我的代码是显示错误:
<%Html.RenderPartial("~/Views/Location/location.ascx", new MVCLocation.Models.LocationModel(), (IEnumerable<SelectListItem>)ViewData["unit"]); %>
答案 0 :(得分:1)
您无需将ViewData
项显式传递给部分视图作为参数。 Yo可以在部分视图中访问ViewData
项目。