首页 > 学院 > 开发设计 > 正文

ASP.NET5WebApi返回HttpResponseMessage

2019-11-14 14:33:37
字体:
来源:转载
供稿:网友

首先,asp.net 5 没有了 MVC 和 WebApi 的区分,都属于 ASP.NET 5,从 Controller 的继承就可以看出,原来 ASP.NET WebApi 2 ValuesController : ApiController 改成了 ValuesController : Controller,并且返回 HttPResponseMessage 也有些改变。

ASP.NET WebApi 2 中的示例代码:

[Route("values/{id}")]public async Task<HttpResponseMessage> Get(string id){    var response = Request.CreateResponse(HttpStatusCode.OK);    var accept = Request.Headers.Accept;    var result = await _valuesService.Get(id);    if (accept.Any(x => x.MediaType == "text/html"))    {        response.Content = new StringContent(result, Encoding.UTF8, "text/html");    }    else    {        response.Content = new StringContent(result, Encoding.UTF8, "text/plain");    }    return response;}

ASP.NET 5 WebApi 中的示例代码:

[Route("values/{id}")]public async Task Get(string id){    var accept = Request.GetTypedHeaders().Accept;    var result = await _valuesService.Get(id);    var data = Encoding.UTF8.GetBytes(result);    if (accept.Any(x => x.MediaType == "text/html"))    {        Response.ContentType = "text/html";    }    else    {        Response.ContentType = "text/plain";    }    await Response.Body.WriteAsync(data, 0, data.Length);}

可以看到,改变还是很大的,主要是两方面:

  • 没有了 Request.CreateResponse,获取 Accept 需要通过 Request.GetTypedHeaders()
  • 没有返回值,而是直接通过数据流的方式写入到 Response.Body 中。

参考资料:

  • Breaking changes list and migration guidance are needed
  • How to create a response message and add content string to it in ASP.NET 5 / MVC 6
  • Where all types for http headers gone in ASP.NET 5?

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表