0

是否可以在同一个视图中使用两个模型(我的视图是我的模型的强类型,我需要在同一个视图中修改另一个模型)。有没有办法做到这一点

4

2 回答 2

2

使用ViewModel具有属性的 a 来表示您的另一个models并将其对象传递给View.

public class CustomerViewModel
{
  public int ID { set;get;}
  public string Name { set;get;}
  public Address Address {set;get;}
  public IList<Order> Orders {set;get;}

  public CustomerViewModel()
  {
     if(Address==null)
         Address=new Address();

     if(Orders ==null)
         Orders =new List<Order>();
  }
}

public class Address 
{
  public string AddressLine1 { set;get;} 
  //Other properties 
}

public class Order
{
  public int OrderID{ set;get;} 
  public int ItemID { set;get;}
  //Other properties 
}

现在在你的 Action 方法中

public ActionResult GetCustomer(int id)
{
   CustomerViewModel objVM=repositary.GetCustomerFromId(id);
   objVm.Address=repositary.GetCustomerAddress(id);
   objVm.Orders=repositary.GetOrdersForCustomer(id);
   return View(objVM);
}

您的视图将输入到CustomerViewModel

@model CustomerViewModel
@using(Html.BeginForm())
{
  <h2>@Model.Name</h2>
  <p>@Model.Address.AddressLine1</p>
  @foreach(var order in Model.Orders)
  {
    <p>@order.OrderID.ToString()</p>
  }

}
于 2012-07-25T17:03:30.740 回答
1

创建一个模型,将这两个模型结合起来。这很常见:

 public class CombinedModel
    {

        public ModelA MyFirstModel { get; set; }
        public ModelB MyOtherModel { get; set; }


    }
于 2012-07-25T17:01:23.533 回答