-1

我有一个表单,它有一个使用模型填充列表的下拉列表,视图被渲染。问题是当我按下提交按钮时,会抛出模型的空指针异常。我想接收在发布操作中选择的值。

这是我的代码:

模型:

public class BillViewModel
{
    public List<SelectListItem> ClientList { get; set; }
    public int SelectedClient { get; set; }
}

控制器:

public ActionResult Index()
{
    var billRepo = new BillRepo();
    var bill = new BillViewModel {ListProducts = billRepo.GetAllProducts()};
    bill.ClientList = new List<SelectListItem>();
    List<Client> allClientList = billRepo.GetAllClients();

    foreach (Client client in allClientList)
    {
        var item = new SelectListItem() { Value = client.ClientId.ToString(), Text = client.Name };
        bill.ClientList.Add(item);
    }

    ViewBag.ClientSelect = new SelectList(billRepo.GetAllClients(), "value", "text", bill.SelectedClient);

    bill.SelectedClient = 1;
    return View(bill);
}


[HttpPost]
public ActionResult Index(BillViewModel billViewModel)
{
     return View();
}

视图:模型

@using (Html.BeginForm())
{
     @Html.DropDownListFor(item => item.SelectedClient, Model.ClientList, "Select Client")
     <input type="submit" value="Aceptar"/>
}
4

1 回答 1

3

在您的 POST 操作中,您将返回与 GET 操作相同的索引视图。但是您没有将任何模型传递给此视图。这就是您获得 NRE 的原因。您的视图必须呈现一个下拉列表,并且您需要填充其值,就像您在 GET 操作中所做的那样:

[HttpPost]
public ActionResult Index(BillViewModel billViewModel)
{
    bill.ClientList = billRepo
        .GetAllClients()
        .ToList()
        .Select(x => new SelectListItem
        {
            Value = client.ClientId.ToString(), 
            Text = client.Name
        })
        .ToList();

    return View(billViewModel);
}

请注意视图模型是如何传递给视图的,以及ClientList属性(您的下拉列表所绑定的)是如何使用值归档的。

于 2013-07-11T20:20:39.403 回答