所以似乎有几个人(比如here和here)遇到了 MVC4模型绑定ApiControllers 的问题,但似乎没有一个人能够解决这个问题我看到了。
我真正想做的就是改变整数列表的数组绑定行为。所以说我有这样的请求类型:
public class MyRequestModel
{
public List<long> ListOfIntegers { get; set; }
...
}
这样的API GET方法:
public ResultsResponseModel Get(MyRequestModel request)
{
// use request.ListOfIntegers meaningfully
...
return response;
}
我基本上希望能够说出/api/results/?listOfIntegers=1+2+3+4+5
并将此决心转移到List<long>
属性。
我尝试过常用的模型绑定技巧,但与 MVC4中的大多数Web API一样,它似乎有一个完全独立的模型绑定路径。
我得到的最远的是在System.Web.Http.ModelBinding.ModelBinder
上使用MyRequestModel
属性,并创建了一个“已实施”System.Web.Http.ModelBinding.IModelBinder
的模型绑定器。这始终会产生一个对象引用异常,其堆栈跟踪永远不会触及我的代码。
有人打过这个吗?想一想下一步该尝试什么?
更新:这是我在自定义ExceptionFilterAttribute
中捕获的堆栈跟踪:
Object reference not set to an instance of an object.
at System.Web.Http.ModelBinding.DefaultActionValueBinder.BindParameterValue(HttpActionContext actionContext, HttpParameterBinding parameterBinding)
at System.Web.Http.ModelBinding.DefaultActionValueBinder.<>c__DisplayClass1.BindValuesAsync>b__0(RequestContentReadKind contentReadKind)
at System.Threading.Tasks.TaskHelpersExtensions.<>c__DisplayClass38.<ToAsyncVoidTask>b__37()
at System.Threading.Tasks.TaskHelpers.RunSynchronously[TResult](Func`1 func, CancellationToken cancellationToken)
答案 0 :(得分:4)
如果您正在谈论ApiControllers,那么您正在尝试在Web API和现在的MVC中建模绑定 这是一个示例模型绑定器
public class MyRequestModelBinderProvider : ModelBinderProvider
{
MyRequestModelBinder binder = new MyRequestModelBinder();
public IdeaModelBinderProvider()
{
}
public override IModelBinder GetBinder(HttpActionContext actionContext, ModelBindingContext bindingContext)
{
if (bindingContext.ModelType == typeof(MyRequestModel))
{
return binder;
}
return null;
}
}
以下是注册自定义模型绑定提供程序的示例
IEnumerable<object> modelBinderProviderServices = GlobalConfiguration.Configuration.ServiceResolver.GetServices(typeof(ModelBinderProvider));
List<Object> services = new List<object>(modelBinderProviderServices);
services.Add(new MyRequestModelBinderProvider());
GlobalConfiguration.Configuration.ServiceResolver.SetServices(typeof(ModelBinderProvider), services.ToArray());
现在,在您的自定义模型绑定器中,您可以使用上下文来访问查询字符串值
public class MyRequestModelBinder : IModelBinder
{
public MyRequestModelBinder()
{
}
public bool BindModel(HttpActionContext actionContext, ModelBindingContext bindingContext)
{
MyRequestModel yourModel;
//use contexts to access query string values
//create / update your model properties
bindingContext.Model = yourModel;
//return true || false if binding is successful
}
确保使用WebAPI的类和接口而不是MVC。一些名称是相同的,但不同的名称空间和dll