asp.net-mvc – WebAPI ModelBinder错误
发布时间:2020-05-25 16:13:34 所属栏目:asp.Net 来源:互联网
导读:我已经实现了一个ModelBinder但它的BindModel()方法没有被调用,我得到错误代码500,并带有以下消息: 错误: 不能 从’MyModelBinder’创建一个’IModelBinder’.请确保它来源 来自’IModelBinder’并且具有公共无参数 构造函数. 我从IModelBinder派生,并有公
|
我已经实现了一个ModelBinder但它的BindModel()方法没有被调用,我得到错误代码500,并带有以下消息: 错误: 不能 我从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; }
}
解决方法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
}
}
进一步阅读: > Parameter Binding in ASP.NET Web API (编辑:安卓应用网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
相关内容
推荐文章
站长推荐
- asp.net-mvc – ASP.NET MVC DropDownListFor不支
- asp.net – 如何扩展aspnet成员身份验证表?
- 在ASP.NET菜单控件中设置item.selected
- ASP.NET(MVC)服务图像
- VS 2015预览缺少“ASP.NET 5 Web应用程序”项目类
- asp.net-mvc – ASP.NET MVC 3 Beta 1 Block访问
- asp.net – 在什么情况下,.NET进程和AppDomains在
- asp.net-mvc – 在asp.net MVC3中调用局部视图
- asp.net-mvc – 在mvc中使用带有错误消息的资源
- 新的ASP.NET捆绑功能 – 我如何以编程方式刷新某
热点阅读
