来自json的webapi 2绑定模型

时间:2016-02-19 14:29:22

标签: c# json asp.net-web-api2 modelbinders

我需要从请求绑定模型并转换为我的自定义对象,我的请求数据是json,方法是post。

这是我在web api中的方法:

public IHttpActionResult Edit([ModelBinder(typeof(KModelBinder))] object data) 

我的问题是:我无法从modelbinder中的ValueProvider访问json。

public class KModelBinder : IModelBinder {
    public bool BindModel(HttpActionContext actionContext, ModelBindingContext bindingContext) {
        var valueProvider = bindingContext.ValueProvider;
        var valProviderResult = valueProvider.GetValue("id");
        // ....
    }
}

1 个答案:

答案 0 :(得分:1)

您可以尝试像这样的基本控制器类

public class BaseController<T>: ApiController
{

    //here you can add whatever dependency injection you may use
    public BaseController(DbContext context) 
    {
        _context = context;  
    }

   [HttpPost]
   public IHttpActionResult Add(T data)
   {
       return Ok(_context.Add(data));
   }

   [HttpPut]
   public IHttpActionResult Edit(T data)
   {
        _context.Modify(data); //here depends on your ORM or data access layer
        return Ok(data);
   }

   /*other methods you think are necessary in this base controller*/
}

之后您可以像这样定义控制器

public class UserController: BaseController<User>
{
   //here you can override the base controller methods
}

我在当前的项目中使用了类似的方法并且工作正常。

检查一下,看看这是否适用于您的项目。