WebApi中直接返回json字符串的方法

2020-12-13 03:00

阅读:479

标签:style   class   blog   code   http   ext   

[HttpPost]
public HttpResponseMessage Upload()
{
string json = "{\"result\":\"true\"}";
return new HttpResponseMessage { Content = new StringContent(json, System.Text.Encoding.UTF8, "application/json") };
}

 

WebApi中直接返回json字符串的方法,搜素材,soscw.com

WebApi中直接返回json字符串的方法

标签:style   class   blog   code   http   ext   

原文地址:http://www.cnblogs.com/yeagen/p/3791506.html


评论


亲,登录后才可以留言!