9

我正在尝试填充 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”始终为空。我究竟做错了什么?

4

2 回答 2

17

在 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();
}
于 2013-04-08T14:49:22.260 回答
2

您可以使用 DropDownListFor 如下,它更简单

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

(你需要一个强类型视图——视图包不适合大列表)

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

我认为这更易于使用。

于 2014-01-31T16:29:50.967 回答