1

ビューのドロップダウンリストから送信された選択した値をコントローラーから取得するにはどうすればよいですか?

モデル:

public class CustomerInformation
{
    public Dictionary<int, string> State { get; set; }
    public CustomerInformation()
    {
        State = new Dictionary<int, string>()
        {
            { 0, "California"},
            { 1, "Nevada"}
        };
    }
}

コントローラ

public ActionResult Index()
{
    var model = new CustomerInformation.Models.CustomerInformation();
    return View(model);
}

public ActionResult ShowData(CustomerInformation.Models.CustomerInformation _customerInformation)
{
   //..
}

意見

@using (Html.BeginForm("ShowData", "Home"))
{
    @Html.Label("State:: ");
    @Html.DropDownListFor(m => m.State, new SelectList(Model.State, "Key", "Value"))   
    <input type="submit" value="Submit" />
}
4

2 に答える 2

1

StateIdモデルのプロパティが必要です。次に、投稿された値でそれを取得できます...

public class CustomerInformation
{
    public Dictionary<int, string> State { get; set; }
 public int StateId {get;set;}   
 public CustomerInformation()
    {
        State = new Dictionary<int, string>()
        {
            { 0, "California"},
            { 1, "Nevada"}
        };
    }
}

ここで、HTML 選択リストの ID と名前を変更します。

@Html.DropDownListFor(m => m.StateId, new SelectList(Model.State, "Key", "Value"))   

次に、Post メソッドで:

public ActionResult ShowData(CustomerInformation.Models.CustomerInformation _customerInformation)
{
   _customerInformation.StateId // The selected value.
} 
于 2013-09-13T21:24:22.480 に答える