我有一个ASP.NET MVC WEB API。由于几个原因(由于没有授权重定向..),我不能只使用一个简单的对象并在我的控制器方法中返回它。因此我需要HttpResponseMessage类,它允许我重定向。
目前我正在这样做:
var response = new Response { responseCode = Response.ResponseCodes.ItemNotFound };
var formatter = new JsonMediaTypeFormatter();
response.Content = new ObjectContent<Response>(response, formatter, "application/json");
..将对象(序列化为JSON)放入HttpResponseMessage的内容中。不知何故,我觉得还有另一种更好的方法。有什么想法吗?
答案 0 :(得分:27)
你可以这样做:
var response = new Response { responseCode = Response.ResponseCodes.ItemNotFound };
Request.CreateResponse<Response>(HttpStatusCode.OK, response);
默认情况下,Web API将根据HTTP请求标头中指定的Content-Type设置响应的格式,但CreateResponse方法中存在一些重载,您可以在其中指定类型格式化程序。
你也可以删除Web API XML序列化程序,强制所有响应都是JSON,如果这是你想要的 - 我不认为它是HttpConfiguration上的Formatters.Remove方法。