zoukankan      html  css  js  c++  java
  • asp.net core WebApi 返回 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 Core 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 中。

     
     
  • 相关阅读:
    vector存入共享内存(了解)
    vector内存分配
    关于传值的小问题
    c++11 lambda(匿名函数)
    std::function,std::bind复习
    项目分析(人物上线消息)
    mongo 1067错误
    随笔1
    随笔
    交换机的体系结构和各部件说明
  • 原文地址:https://www.cnblogs.com/webenh/p/11434725.html
Copyright © 2011-2022 走看看