urlencoded绑定到不同的属性名称
我期待内容类型设置为的POST请求:
内容类型:application / x-www-form-urlencoded
请求正文如下所示:
如first_name =约翰&姓氏=香蕉
我对控制器的行为有这样的签名:
[HttpPost]
public HttpResponseMessage Save(Actor actor)
{
....
}
Actor类的给定为:
public class Actor
{
public string FirstName {get;set;}
public string LastName {get;set;}
}
有没有办法强制Web API绑定:
first_name =>名字
姓氏=>姓氏
我知道如何处理内容类型设置为application / json的请求,但不会使用urlencoded。
我98%确定(我查看了源代码),WebAPI不支持它。
如果您确实需要支持不同的属性名称,则可以:
将其他属性添加到用作别名的Actor
类。
创建您自己的模型绑定器。
这是一个简单的模型绑定器:
public sealed class ActorDtoModelBinder : IModelBinder
{
public bool BindModel(HttpActionContext actionContext, ModelBindingContext bindingContext)
{
var actor = new Actor();
var firstNameValueResult = bindingContext.ValueProvider.GetValue(CreateFullPropertyName(bindingContext, "First_Name"));
if(firstNameValueResult != null) {
actor.FirstName = firstNameValueResult.AttemptedValue;
}
var lastNameValueResult = bindingContext.ValueProvider.GetValue(CreateFullPropertyName(bindingContext, "Last_Name"));
if(lastNameValueResult != null) {
actor.LastName = lastNameValueResult.AttemptedValue;
}
bindingContext.Model = actor;
bindingContext.ValidationNode.ValidateAllProperties = true;
return true;
}
private string CreateFullPropertyName(ModelBindingContext bindingContext, string propertyName)
{
if(string.IsNullOrEmpty(bindingContext.ModelName))
{
return propertyName;
}
return bindingContext.ModelName + "." + propertyName;
}
}
如果您正面临挑战,可以尝试创建通用模型绑定器。
这是一个旧帖子,但也许这可以帮助其他人。 这是一个AliasAttribute
和相关ModelBinder
的解决方案
它可以像这样使用:
[ModelBinder(typeof(AliasBinder))]
public class MyModel
{
[Alias("state")]
public string Status { get; set; }
}
不要犹豫,评论我的代码:)
每个想法/评论都是受欢迎的。
链接地址: http://www.djcxy.com/p/18285.html上一篇: urlencoded binding to different property names
下一篇: Why Internet Explorer differs from the expected functionality on a back button