我有一个WebApi 2控制器。我想在其中一个控制器上使用OData Patch。这是我到目前为止所做的。
我在WebApiConfig中添加了以下行
config.MapODataServiceRoute("odata", "odata", GenerateEdmModle());
private static Microsoft.OData.Edm.IEdmModel GenerateEdmModle()
{
var builder = new ODataConventionModelBuilder();
builder.EntitySet<Auth>("Auths");
return builder.GetEdmModel();
}
然后在控制器中,这就是我尝试使用补丁方法的方法
[HttpPatch]
public async Task<IHttpActionResult> PatchAuth(int id, Delta<Auth> value)
{
var auth = await db.Auth.FindAsync(id);
if (auth == null) return NotFound();
System.Diagnostics.Debug.WriteLine(auth.direction, auth.id);
System.Diagnostics.Debug.WriteLine("Patching");
try
{
value.Patch(auth);
await db.SaveChangesAsync();
}
catch (Exception e)
{
System.Diagnostics.Debug.WriteLine(e.Message);
return InternalServerError(e);
}
return Ok(value);
}
以下是我如何通过角度服务发送它
// patch auth
service.patchAuth = function (authId, auth) {
var request = $http({
method: 'PATCH',
url: baseUrl + 'api/Auths',
data: JSON.stringify(auth),
params: { id: authId },
headers: { 'Content-Type': 'application/x-www-form-urlencoded' }
});
return (request.then(handleSuccess, handleError));
}
我看到控制器找到了补丁方法,似乎它正在尝试更新,但是值永远不会得到更新。
我还在value.Patch(auth)
添加了一个断点并检查了changedProperties
,但没有任何内容。我一直在试图找出造成这种情况的原因,但我们还没有得到任何线索。
答案 0 :(得分:2)
您指定了application/x-www-form-urlencoded
作为内容类型。相反,您必须使用application/json
。
当您指定application/x-www-form-urlencoded
时,呼叫仍然路由到正确的补丁处理程序(如您的情况),但是Web.Api没有将更改的属性传递到Delta<T>
。
当您在Fiddler中检查原始 HTTP请求时,您的通话应该更像这样:
PATCH http://www.example.com/api/Auths(5) HTTP/1.1
Content-Type: application/json
Host: www.example.com
Content-Length: 20
{ "id" : 123456789 }