10

我已经实现了一个ModelBinder但它的BindModel()方法没有被调用,我得到错误代码 500 并显示以下消息:

错误:

无法从“MyModelBinder”创建“IModelBinder”。请确保它派生自“IModelBinder”并具有公共无参数构造函数。

我确实从 IModelBinder 派生并且确实有公共无参数构造函数。

我的模型绑定器代码:

public class MyModelBinder : IModelBinder
    {
        public MyModelBinder()
        {

        }
        public bool BindModel(ModelBindingExecutionContext modelBindingExecutionContext, ModelBindingContext bindingContext)
        {
            // Implementation
        }
    }

在 Global.asax 中添加:

protected void Application_Start(object sender, EventArgs e)
{
    ModelBinders.Binders.DefaultBinder = new MyModelBinder();

    // ...
}

WebAPI 动作签名:

    [ActionName("register")]
    public HttpResponseMessage PostRegister([ModelBinder(BinderType = typeof(MyModelBinder))]User user)
    {
        return new HttpResponseMessage(HttpStatusCode.OK);
    }

用户等级:

public class User
{
    public List<Communication> Communications { get; set; }
}
4

2 回答 2

22

ASP.NET Web API 使用与 APS.NET MVC 完全不同的 ModelBinding 基础设施。

您正在尝试实现 MVC 的模型绑定器接口System.Web.Mvc.IModelBinder,但要使用您需要实现的 Web APISystem.Web.Http.ModelBinding.IModelBinder

所以你的实现应该是这样的:

public class MyModelBinder : System.Web.Http.ModelBinding.IModelBinder
{
    public MyModelBinder()
    {

    }

    public bool BindModel(
        System.Web.Http.Controllers.HttpActionContext actionContext, 
        System.Web.Http.ModelBinding.ModelBindingContext bindingContext)
    {
        // Implementation
    }
}

进一步阅读:

于 2013-09-28T19:45:27.160 回答
1

这用于使用 System.Web.ModelBinding

 using System.Web.ModelBinding;
class clsUserRegModelBinder : IModelBinder
{
   public bool BindModel(ModelBindingExecutionContext modelBindingExecutionContext, ModelBindingContext bindingContext)
   {
        throw new NotImplementedException();
   }
}

这对于 System.Web.MVC

using System.Web.Mvc;


class clsUserRegModelBinder : IModelBinder
{
    public object BindModel(ControllerContext controllerContext,     ModelBindingContext bindingContext)
    {
        throw new NotImplementedException();
    }
}

注意不同我希望它对你有帮助

于 2016-01-28T08:14:50.750 回答