0

UpdateModel 失败,因为 arcm.Notes 进入此方法时为空,我希望它为空字符串。

也许我需要在将 Notes 设置为“”后刷新 ValueProvider (?),这样我才能使用 UpdateModel。

 public ActionResult Edit1(Guid id, ActivityResponseConsumerMobile arcm) {
        if (arcm.Notes == null)
            arcm.Notes = "";

        if (!ModelState.IsValid) {
            SetupDropDowns();
            return View(arcm);
        }

        ActivityResponseConsumerMobile arcmDb = uow.ActivityResponseConsumerMobiles.Single(a => a.Id == id);
        try {
            UpdateModel(arcmDb, null, null, new[] { "Id" });
4

1 回答 1

1

这是我相信自 MVC2 以来的默认行为。请注意这里的一种解决方法:

http://brianreiter.org/2010/09/16/asp-net-mvc-2-0-undocumented-model-string-property-break-change/


public sealed class EmptyStringModelBinder : DefaultModelBinder
{
    public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
    {
        bindingContext.ModelMetadata.ConvertEmptyStringToNull = false;
        return base.BindModel(controllerContext, bindingContext);
    }
}

并注册活页夹


protected void Application_Start()
{
    ModelBinders.Binders.DefaultBinder = new EmptyStringModelBinder();
    RegisterRoutes( RouteTable.Routes );
}

于 2011-11-01T02:20:11.947 回答