WebAPI ModelBinder错误

时间:2013-09-28 19:29:56

标签: asp.net-mvc asp.net-mvc-4 asp.net-web-api modelbinder

我已实施了ModelBinder,但未调用BindModel()方法,我收到错误代码500并显示以下消息:

错误:

不能 创建一个' IModelBinder'来自' MyModelBinder'。请确保它来源 来自' IModelBinder'并且具有公共无参数 构造

我是从IModelBinder派生出来的,并且有公共无参数构造函数。

我的ModelBinder代码:

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; }
}

2 个答案:

答案 0 :(得分:20)

ASP.NET Web API使用与APS.NET MVC完全不同的ModelBinding insfracture。

您正在尝试实现MVC的模型绑定器接口System.Web.Mvc.IModelBinder,但要使用Web API,您需要实现System.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
    }
}

进一步阅读:

答案 1 :(得分: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();
    }
}

请注意不同,我希望它可以帮助您