我有一个简单的 ApiController
public HttpResponseMessage Put(int orderid, [FromBody] Order order)
{
// Do something useful with order.Notes here
}
和一个类(实际的类包含更多属性)
public class Order
{
public string Notes { get; set; }
}
并希望处理以下类型的 PUT 请求
PUT http://localhost/api/orders/{orderid}
Content-Type: application/x-www-form-urlencoded
notes=sometext
一切正常,但空值作为 null 传递
notes=blah // passes blah
notes= // Passes null
someothervalue=blah // Passes null
是否可以让 ApiController 区分空值和缺失值?