なぜモデルバインダーが編集モードでドロップダウンリストで機能しないのですか?編集ビューでasp.net mvcモデルバインダーが編集モードのドロップダウンリストで機能しない
私はこのコードとテスト二つの異なるDDL書く:
@Html.DropDownList("ProductParentCategoryId", null, htmlAttributes: new { @class = "form-control" })
@Html.DropDownListFor(model => model.ProductParentCategoryId, (SelectList)ViewBag.ParentId)
と私のコントローラで
ViewBag.ProductParentCategoryId = new SelectList(_productCategoryService.GetAllProductCategory(), "ProductCategoryId", "ProductCategoryTitle");
ViewBag.ParentId = new SelectList(_productCategoryService.GetAllProductCategory(), "ProductCategoryId", "ProductCategoryTitle");
が、編集モード内のすべてのテキストボックスモデルバインダーを埋めるが、ドロップのために起きていないがダウンリスト。
------- -------更新
は...編集モード、モデルバインダーのバインドテキストボックスに、データベースからすべてのデータと、各要素である が、中ドロップダウンリストモデルバインダーはデータベースからデータをバインドしません。選択値をドロップダウンリスト