我正在使用最近发布的 MVC 4 Beta (4.0.20126.16343) 并且正在努力解决反序列化/模型绑定不适用于数组的已知问题(请参阅此处的堆栈溢出)
我很难让我的显式自定义绑定连接起来。我已经注册了一个自定义 IModelBinder(或尝试注册),但是当我的 post 操作被调用时,我的自定义活页夹没有被击中,我只是获得了默认的序列化(使用空数组 - 即使 wireshark 向我显示传入的复杂对象包含数组元素)。
我觉得我错过了一些东西,并且非常感谢任何解决方案或见解。
谢谢。
来自 global.asax.cs:
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "api/{controller}/{id}",
defaults: new { id = RouteParameter.Optional }
);
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
}
protected void Application_Start()
{
ModelBinders.Binders.Add(typeof(DocuSignEnvelopeInformation), new DocusignModelBinder());
AreaRegistration.RegisterAllAreas();
RegisterGlobalFilters(GlobalFilters.Filters);
RegisterRoutes(RouteTable.Routes);
BundleTable.Bundles.RegisterTemplateBundles();
}
和我的自定义活页夹:
public object BindModel(ControllerContext controllerContext, System.Web.Mvc.ModelBindingContext bindingContext)
{
var value = bindingContext.ValueProvider.GetValue("envelope");
var model = new DocuSignEnvelopeInformation();
//build out the complex type here
return model;
}
我的控制器只是:
public void Post(DocuSignEnvelopeInformation envelope)
{
Debug.WriteLine(envelope);
}