簡體   English   中英

MVC Html.DropDownListFor 返回具有空值的復雜類型

[英]MVC Html.DropDownListFor returns complex type with null values

我的控制器中有以下控制器創建操作。 注意選擇列表中的顯示名稱將是“StoreName - StoreAddress”。 Store complexType 存儲在 Store 中。

        // GET: Purchases/Create
        public ActionResult Create()
        {
            ViewBag.Stores = db.Stores.Select(s => new { DisplayName = s.StoreName.ToString() + " - " + s.Address.ToString(), Store = s});

            return View();
        }

在創建視圖中,以下代碼負責確保其正確顯示。

    <div class="form-group">
        @Html.LabelFor(model => model.Store.StoreName, htmlAttributes: new { @class = "control-label col-md-2" })
        <div class="col-md-10">
            @Html.DropDownListFor(model => model.Store.StoreName, new SelectList(ViewBag.Stores, "Store", "DisplayName"), new { @class = "form-control" })
            @Html.ValidationMessageFor(model => model.Store.StoreName, "", new { @class = "text-danger" })
        </div>
    </div>

它將轉到控制器的 post 方法(如果我是正確的)。

        // POST: Purchases/Create
        // To protect from overposting attacks, please enable the specific properties you want to bind to, for 
        // more details see https://go.microsoft.com/fwlink/?LinkId=317598.
        [HttpPost]
        [ValidateAntiForgeryToken]
        public ActionResult Create([Bind(Include = "Id,Store,Price,Date")] Purchase purchase)
        {
            if (ModelState.IsValid)
            {
                Store store = purchase.Store;

                db.Purchases.Add(purchase);
                db.SaveChanges();
                return RedirectToAction("Index");
            }

            return View(purchase);
        }

但是,Store store = purchase.Store 現在將提供一個復雜的 Store 類型,其中除了 StoreName 之外的任何值都設置為 null。 StoreName 將是一個字符串。

如何獲得與所選 Store 對象相等的復雜類型?


編輯1:

public class Purchase
   {
       public int Id { get; set; }

       public Store Store { get; set; }

       public string Type { get; set; }

       [DataType(DataType.Currency)]
       [Column(TypeName = "money")]
       public decimal Price { get; set; }

       [DataType(DataType.Date)]
       [DisplayFormat(DataFormatString = "{0:dd/MM/yyyy}", ApplyFormatInEditMode = true)]
       public DateTime Date { get; set; }
   }

public class PurchaseDBContext : DbContext
   {
       public DbSet<Purchase> Purchases { get; set; }
       public DbSet<Store> Stores { get; set; }

       protected override void OnModelCreating(DbModelBuilder modelBuilder)
       {

       }
   }
public class Store
    {
        public int StoreId { get; set; }

        public string StoreName { get; set; }

        public string Address { get; set; }

        public string City { get; set; }

        [DataType(DataType.PhoneNumber)]
        [RegularExpression(@"^((\+|00(\s|\s?\-\s?)?)31(\s|\s?\-\s?)?(\(0\)[\-\s]?)?|0)[1-9]((\s|\s?\-\s?)?[0-9])((\s|\s?-\s?)?[0-9])((\s|\s?-\s?)?[0-9])\s?[0-9]\s?[0-9]\s?[0-9]\s?[0-9]\s?[0-9]$", ErrorMessage = "This is not a valid phonenumber")]
        public string PhoneNumber { get; set; }

    }

我是否需要使用額外的注釋來設置導航屬性?

您的示例中有很多事情要做,但是如果您使用的是導航屬性並且您的模型是以某種方式設置的,則不需要傳遞復雜的對象。 如果您為 Store/StoreId 設置導航屬性,實體框架應該為您推斷事物,因此它將簡化您的視圖。

public class Purchase 
{
    public int StoreId { get; set; }
    [ForeignKey("StoreId")]
    public Store Store { get; set;}
}

我會將模型傳遞給類似於下面的視圖。 IMO,它比使用 ViewBag 更干凈。

public class CreatePurchaseModel
{
    //To populate a list
    public List<Store> AvailableStores { get; set; }
    //The actual object to be created
    public Purchase Purchase { get; set; }
}

控制器方法:

// GET: Purchases/Create
public ActionResult Create()
{
    var vm = new CreatePurchaseModel() 
    {
        AvailableStores = db.Stores.ToList(),
        Purchase = new Purchase()
    };

    return View(vm);     
}

使用 AvailableStores 屬性填充下拉列表以設置 Purchase.StoreId

@Html.DropDownListFor(m => m.Purchase.StoreId, Model.AvailableStores.Select(x => new SelectListItem { Text = x.StoreName.ToString(), Value = x.StoreId.ToString() }))

如果設置正確,您只需要在 post 方法參數中購買

[ValidateAntiForgeryToken, HttpPost]
public ActionResult Create(Purchase purchase) 
{
    //purchase.StoreId should have a non zero value
    db.Purchases.Add(purchase);
    db.SaveChanges();
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM