视图模型:
public class AdminAddMovieDataBase
{
public MovieInformation MovieInformation { get; set; }
public List<Genre> Genres { get; set; }
}
基页:
<div class="contentWrapper1">
<div class="contentLeft1">Title</div>
<div>
@Html.TextBoxFor(model => model.MovieInformation.MovieTitle, new { @class = "signupinputnameField", id = "movieTitle" }) </div>
</div>
<div id="genre">
<div class="contentLeft1">Genre</div>
@Html.Partial("_GenrePartialPage", Model.Genres)
</div>
部分页面:
<div class="ContentWrapper1">
<ul><li>
@Html.DropDownList("GenreList", new SelectList(Model, "GenreID", "GenreName"), "--Select Genre--", new { @class = "contentRightOption1" })
<a href="#" onclick="$(this).parent().remove();">Delete</a>
</li></ul>
</div>
当我点击基本页面表单的保存按钮时(我没有在示例代码中给出)。我可以获取 MovieInformation 模型的数据,但不能获取部分页面中的流派数据。我无法使用部分页面绑定视图模型。谢谢你。