0

DefaultModelBinder の非常に単純な実装があり、カスタム検証を実行する必要があります。

public class MyViewModelBinder : DefaultModelBinder 
{
    public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
    {
        ModelStateDictionary modelState = bindingContext.ModelState;
        var model = (MyViewModel)base.BindModel(controllerContext, bindingContext);

        var result = ValidationFactory.ForObject<MyViewModel>().Validate(model);

        CustomValidation(result, modelState);

        return model;
    }
}

MyViewModel はパブリック シール クラスです。モデル バインダーは、次のように Global.asax に登録されます。

ModelBinders.Binders.Add(typeof(MyViewModel), new MyViewModelBinder());

問題は、モデルが読み込まれないことです! しかし、MVC の既定のモデル バインダー (global.asax の登録を削除します) は正常に動作します。

これはビュー HTML です。

    <table>
        <tr>
            <td><label for="Name">Name</label></td>
            <td><input id="Name" name="Name" type="text" value="" /></td>
        </tr>
        <tr>
            <td><label for="Code">Code</label></td>
            <td><input id="Code" name="Code" type="text" value="" /></td>
        </tr>
    </table> </div>

すべてのフィールドは、モデルのプロパティと一致します。

4

1 に答える 1

1

ご提供いただいた情報では、問題を再現できません。これが私がしたことです。

モデルを見る:

public sealed class MyViewModel
{
    public string Name { get; set; }
    public string Code { get; set; }
}

コントローラ:

public class HomeController : Controller
{
    public ActionResult Index()
    {
        return View();
    }

    [HttpPost]
    public ActionResult Index(MyViewModel model)
    {
        // at this stage the model is populated perfectly fine
        return View();
    }
}

インデックス ビュー:

<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
</head>
<body>
    <% using (Html.BeginForm()) { %>
        <table>
            <tr>
                <td><label for="Name">Name</label></td>
                <td><input id="Name" name="Name" type="text" value="" /></td>
            </tr>
            <tr>
                <td><label for="Code">Code</label></td>
                <td><input id="Code" name="Code" type="text" value="" /></td>
            </tr>
        </table>
        <input type="submit" value="OK" />
    <% } %>
</body>
</html>

モデル バインダー:

public class MyViewModelBinder : DefaultModelBinder
{
    public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
    {
        var model = (MyViewModel)base.BindModel(controllerContext, bindingContext);

        // at this stage the model is populated perfectly fine
        return model;
    }
}

だから今問題は、あなたのコードは私のものとどのように違うのか、そしてそれらCustomValidationValidateメソッドには何がありますか?

于 2011-08-29T16:51:42.480 に答える