web-dev-qa-db-ja.com

DropDownListの選択された値を取得します。 Asp.NET MVC

フォームを送信するときに、DropDownListを設定し、選択した値を取得しようとしています。

ここに私のモデルがあります:

public class Book
{
    public Book()
    {
        this.Clients = new List<Client>();
    }

    public int Id { get; set; }
    public string JId { get; set; }
    public string Name { get; set; }
    public string CompanyId { get; set; }
    public virtual Company Company { get; set; }
    public virtual ICollection<Client> Clients { get; set; }
}

私のコントローラー:

    [Authorize]
    public ActionResult Action()
    {
        var books = GetBooks();
        ViewBag.Books = new SelectList(books);
        return View();
    }

    [Authorize]
    [HttpPost]
    public ActionResult Action(Book book)
    {
        if (ValidateFields()
        {
            var data = GetDatasAboutBookSelected(book);
            ViewBag.Data = data;
            return View();
        }
        return View();
    }

私のフォーム:

@using (Html.BeginForm("Journaux","Company"))
{
<table>
    <tr>
        <td>
            @Html.DropDownList("book", (SelectList)ViewBag.Books)
        </td>
    </tr>
    <tr>
        <td>
            <input type="submit" value="Search">
        </td>
    </tr>
</table>
}

クリックすると、Actionのパラメーター「book」は常にnullです。私は何を間違えていますか?

9

HTMLでは、ドロップダウンボックスは単純なスカラー値のみを送信します。あなたの場合、選択された本のIDになります:

@Html.DropDownList("selectedBookId", (SelectList)ViewBag.Books)

そしてコントローラーアクションに適応して、コントローラーアクションに渡されるIDから本を取得します。

[Authorize]
[HttpPost]
public ActionResult Action(string selectedBookId)
{
    if (ValidateFields()
    {
        Book book = FetchYourBookFromTheId(selectedBookId);
        var data = GetDatasAboutBookSelected(book);
        ViewBag.Data = data;
        return View();
    }
    return View();
}
17
Darin Dimitrov

以下のようにDropDownListForを使用できます。

@Html.DropDownListFor(m => m.Id, new SelectList(Model.Books,"Id","Name","1"))

(これには強く型付けされたビューが必要です-ビューバッグは大きなリストには適していません)

   public ActionResult Action(Book model)
   {
        if (ValidateFields()
        {
            var Id = model.Id;
        ...        

これはもっと使いやすいと思います。

1
mesut