所以我正在尝试使用TryUpDateModel
更新对象,问题在于下拉列表。
我有一个图像对象作为属性的对象。
目前我使用对象类作为模型,并从SelectListItems
列表中生成一个下拉列表,其值设置为我想要设置为objects属性的图像的guid。
我的观看代码:
@Html.LabelFor(m => m.RibbonImage, "Ribbon Image:")
@Html.DropDownListFor(m => m.RibbonImage, (List<SelectListItem>)ViewBag.RibbonImages)
我在哪里生成列表:
ViewBag.RibbonImages = this.Datastore.GetAll<Image>()
.Where(x => x.Type == ImageType.Ribbon)
.Select(x => new SelectListItem()
{
Text = x.Description + " \u2013 " + Path.GetFileName(x.Filename),
Value = x.Id.ToString()
})
.ToList();
我在主对象类中的属性:
/// <summary>
/// Gets or sets the ribbon image to use
/// </summary>
public virtual Image RibbonImage { get; set; }
我的行动方法:
[HttpPost]
[..]
public ActionResult Update(Guid? id)
{
RibbonLookup ribbon = this.Datastore.Query<RibbonLookup>().SingleOrDefault(x => x.Id == id);
[..]
string[] properties = new string[]
{
"RibbonImage"
};
if (this.TryUpdateModel<RibbonLookup>(ribbon, properties))
{
this.Datastore.Update<RibbonLookup>(ribbon);
ModelState.AddModelError(string.Empty, "The ribbon has been updated.");
}
else
{
ModelState.AddModelError(string.Empty, "The ribbon could not be updated.");
}
[..]
}
是否有一种简单的方法可以将DropDownListFor
与TryUpdateModel
一起使用,而不必手动更新每个属性?
答案 0 :(得分:0)
没有完全理解你的问题。不过,首先想一想,我将分享我们如何使用下拉列表控件,这对我们来说很好。下面的代码没有回答你的问题,希望了解更多有关问题陈述的信息。
这通常是我在我们的应用程序中使用下拉列表的方式。在我们的表单发布中,包含SelectedCustomerId的父模型是已发布的(已选择的)SelectedCustomerId。默认的模型绑定器将其绑定而没有任何问题。
查看:
@model SampleDropDown.Models.CustomerData
using (Html.BeginForm("Continue", "Customer"))
{
if (Model.Customers != null)
{
@Html.DropDownListFor(m => m.SelectedCustomerId, new SelectList(Model.Customers, "CustomerId", "DisplayText"))
}
<input type="submit" value="Select" />
}
public class CustomerData
{
public List<Customer> Customers { get; set; }
public string SelectedCustomerId { get; set; }
public string Response { get; set; }
}
public class Customer
{
public string DisplayText { get; set; }
public string CustomerId { get; set; }
}
控制器:
[HttpPost]
public ActionResult Continue(CustomerData data)
{
return View("Index", data);
}