0

我正在尝试在下拉框中包含客户列表。我将此列表包含在一个表单(Html.BeginForm())中,以便我可以将选定的值传递给我的 POST 控制器。我想我错过了一些东西,我有以下课程:

我的发票视图模型:

public class InvoiceViewModel
{
    public InvoiceViewModel()
    {
        // makes sure InvoiceItems is not null after construction
        InvoiceItems = new List<PrelimInvoice>();
    }
    public List<PrelimInvoice> InvoiceItems { get; set; }
    public List<Client> ClientId { get; set; }
    public Client Client { get; set; }
    public decimal InvoiceTotal { get; set; }
}

我的客户模型:

public class Client
{
    public string ClientId { get; set; }
    public string Name { get; set; }
}

我的 SaveInvoice 方法:

public ActionResult SaveInvoice()
        {
            var invoice = new Invoice();
            TryUpdateModel(invoice);
            try
            {
                    invoice.ClientId = User.Identity.Name;
                    invoice.DateCreated = DateTime.Now;
                    //Save invoice
                    proent.Invoices.Add(invoice);
                    proent.SaveChanges();
                    //Process the invoice
                    var preliminvoice = InvoiceLogic.GetInvoice(this.HttpContext);
                    preliminvoice.CreateInvoice(invoice);

                    return RedirectToAction("Complete", new { id = invoice.InvoiceId });
            }
            catch
            {
                //Invalid - redisplay with errors
                return View(invoice);
            }
        }

我的 Index.cshtml 是 InvoiceViewModel 类的强类型。Index.cshtml 是我生成表单的地方。

我不确定创建 Html.DropDownList 的代码,以及是否需要包含一个列表或我的客户的某些东西。我在其他地方有下拉列表,但它们是模型的强类型,而不是视图模型,因此我很困惑。

任何人都可以帮助我吗?

4

1 回答 1

1

首先向您的 ViewModel 添加以下 2 个属性:

  1. SelectedClientId:存储选中的值
  2. ClientItems:存储填充下拉列表的 SelectListItems 集合。

例如

public class ClientViewModel
{
    public List<Client> Clients;

    public int SelectedClientId { get; set; } // from point 1 above
    public IEnumerable<SelectListItem> ClientItems // point 2 above
    {
        get { return new SelectList(Clients, "Id", "Name");}
    }
}

然后在您的 View index.cshtml 上添加以下内容:

@model ClientViewModel

@Html.DropDownListFor(m => m.SelectedClientId, Model.ClientItems)
于 2013-05-06T16:48:27.463 回答