23

検索してみましたが、問題を解決するものは見つかりませんでした。SelectList で選択済みとしてマークした項目を表示しない Razor ビューに DropDownList があります。リストにデータを入力するコントローラー コードは次のとおりです。

var statuses  = new SelectList(db.OrderStatuses, "ID", "Name", order.Status.ID.ToString());
ViewBag.Statuses = statuses;
return View(vm);

ビューコードは次のとおりです。

<div class="display-label">
   Order Status</div>
<div class="editor-field">
   @Html.DropDownListFor(model => model.StatusID, (SelectList)ViewBag.Statuses)
   @Html.ValidationMessageFor(model => model.StatusID)
</div>

私はそれをウォークスルーし、ビューでも正しい SelectedValue を持っていますが、選択された値に関係なく、DDL は常にリストの最初の項目を表示します。DDLをSelectValueにデフォルト設定するために私が間違っていることを誰かが指摘できますか?

4

7 に答える 7

52

DropDownListFor ヘルパーは最初の引数として渡されたラムダ式を使用し、特定のプロパティの値を使用するため、コンストラクターの最後の引数SelectList(選択した値 ID を渡すことができるようにする必要がある) は無視されます。

したがって、これを行う醜い方法は次のとおりです。

モデル:

public class MyModel
{
    public int StatusID { get; set; }
}

コントローラ:

public class HomeController : Controller
{
    public ActionResult Index()
    {
        // TODO: obviously this comes from your DB,
        // but I hate showing code on SO that people are
        // not able to compile and play with because it has 
        // gazzilion of external dependencies
        var statuses = new SelectList(
            new[] 
            {
                new { ID = 1, Name = "status 1" },
                new { ID = 2, Name = "status 2" },
                new { ID = 3, Name = "status 3" },
                new { ID = 4, Name = "status 4" },
            }, 
            "ID", 
            "Name"
        );
        ViewBag.Statuses = statuses;

        var model = new MyModel();
        model.StatusID = 3; // preselect the element with ID=3 in the list
        return View(model);
    }
}

意見:

@model MyModel
...    
@Html.DropDownListFor(model => model.StatusID, (SelectList)ViewBag.Statuses)

リアルビューモデルを使用した正しい方法は次のとおりです。

モデル

public class MyModel
{
    public int StatusID { get; set; }
    public IEnumerable<SelectListItem> Statuses { get; set; }
}

コントローラ:

public class HomeController : Controller
{
    public ActionResult Index()
    {
        // TODO: obviously this comes from your DB,
        // but I hate showing code on SO that people are
        // not able to compile and play with because it has 
        // gazzilion of external dependencies
        var statuses = new SelectList(
            new[] 
            {
                new { ID = 1, Name = "status 1" },
                new { ID = 2, Name = "status 2" },
                new { ID = 3, Name = "status 3" },
                new { ID = 4, Name = "status 4" },
            }, 
            "ID", 
            "Name"
        );
        var model = new MyModel();
        model.Statuses = statuses;
        model.StatusID = 3; // preselect the element with ID=3 in the list
        return View(model);
    }
}

意見:

@model MyModel
...    
@Html.DropDownListFor(model => model.StatusID, Model.Statuses)
于 2012-04-06T06:19:17.653 に答える
3

ビューごとにビューモデルを作成します。このようにすると、画面に必要なものだけが含まれます。このコードをどこで使用しているかわからないので、新しい注文を追加するための作成ビューがあると仮定します。

ビューの作成用に新しいビューモデルを作成します。

public class OrderCreateViewModel
{
     // Include other properties if needed, these are just for demo purposes

     // This is the unique identifier of your order status,
     // i.e. foreign key in your order table
     public int OrderStatusId { get; set; }
     // This is a list of all your order statuses populated from your order status table
     public IEnumerable<OrderStatus> OrderStatuses { get; set; }
}

注文ステータスクラス:

public class OrderStatus
{
     public int Id { get; set; }
     public string Name { get; set; }
}

作成ビューには、次のものがあります。

@model MyProject.ViewModels.OrderCreateViewModel

@using (Html.BeginForm())
{
     <table>
          <tr>
               <td><b>Order Status:</b></td>
               <td>
                    @Html.DropDownListFor(x => x.OrderStatusId,
                         new SelectList(Model.OrderStatuses, "Id", "Name", Model.OrderStatusId),
                         "-- Select --"
                    )
                    @Html.ValidationMessageFor(x => x.OrderStatusId)
               </td>
          </tr>
     </table>

     <!-- Add other HTML controls if required and your submit button -->
}

アクションの作成メソッド:

public ActionResult Create()
{
     OrderCreateViewModel viewModel = new OrderCreateViewModel
     {
          // Here you do database call to populate your dropdown
          OrderStatuses = orderStatusService.GetAllOrderStatuses()
     };

     return View(viewModel);
}

[HttpPost]
public ActionResult Create(OrderCreateViewModel viewModel)
{
     // Check that viewModel is not null

     if (!ModelState.IsValid)
     {
          viewModel.OrderStatuses = orderStatusService.GetAllOrderStatuses();

          return View(viewModel);
     }

     // Mapping

     // Insert order into database

     // Return the view where you need to be
}

これにより、送信ボタンをクリックしたときに選択内容が保持され、エラー処理のために作成ビューにリダイレクトされます。

これがお役に立てば幸いです。

于 2012-04-06T13:23:05.260 に答える