首页 > Windows开发 > 详细

webapi返回不同格式的数据

时间:2021-06-29 13:23:43      阅读:19      评论:0      收藏:0      [点我收藏+]
     //默认返回 json GlobalConfiguration.Configuration.Formatters.XmlFormatter.SupportedMediaTypes.Clear();

          //  GlobalConfiguration.Configuration.Formatters.JsonFormatter.MediaTypeMappings.Add(new QueryStringMapping("datatype", "json", "application/json"));  

            //返回格式选择 datatype 可以替换为任何参数 //GlobalConfiguration.Configuration.Formatters.XmlFormatter.MediaTypeMappings.Add(              //    new QueryStringMapping("datatype", "xml", "application/xml")); 

using System.IO;  
/// <summary>  
/// WebApi返回图片  
/// </summary>  
public HttpResponseMessage GetQrCode()  
{  
    var imgPath = @"D:\ITdosCom\Images\itdos.jpg";  
    //从图片中读取byte  
    var imgByte = File.ReadAllBytes(imgPath);  
    //从图片中读取流  
    var imgStream = new MemoryStream(File.ReadAllBytes(imgPath));  
    var resp = new HttpResponseMessage(HttpStatusCode.OK)  
    {  
        Content = new ByteArrayContent(imgByte)  
        //或者  
        //Content = new StreamContent(stream)  
    };  
    resp.Content.Headers.ContentType = new MediaTypeHeaderValue("image/jpg");  
    return resp;  
}  
/// <summary>  
/// WebApi返回json数据  
/// </summary>  
public HttpResponseMessage GetQrCode()  
{  
    var jsonStr = "{\"IsSuccess\":true,\"Data\":\"www.itdos.com\"}";  
    var result = new HttpResponseMessage(HttpStatusCode.OK)  
                    {  
                        Content = new StringContent(jsonStr, Encoding.UTF8, "text/json")  
                    };  
    return result;  
}  
/// <summary>  
/// WebApi返回字符串  
/// </summary>  
public HttpResponseMessage GetQrCode()  
{  
    var str = "IT大师www.itdos.com";  
    var result = new HttpResponseMessage(HttpStatusCode.OK)  
                    {  
                        Content = new StringContent(str, Encoding.UTF8, "text/plain")  
                    };  
    return result;  
}  

 

webapi返回不同格式的数据

原文:https://www.cnblogs.com/lyq666666/p/14948322.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!