C# 去掉webapi返回json所带的转义字符
2021-06-06 17:06
标签:str osi cat lap encoding 数据 enc tin 技术 C# 去掉webapi返回json所带的转义字符 标签:str osi cat lap encoding 数据 enc tin 技术 原文地址:https://www.cnblogs.com/hofmann/p/10770230.html反序列换报错:
{"Error converting value \"{\"Result\":true,\"Code\":\"\",\"Msg\":\"success\",\"Data\":[\"/_temp/Other/png/20190425/20190425173934_7723.png\"]}\" to type ‘Abhs.Code.HttpResponseResult‘. Path ‘‘, line 1, position 118."}
数据:
"{\"Result\":true,\"Code\":\"\",\"Msg\":\"success\",\"Data\":[\"/_temp/Other/png/20190425/20190425181452_6968.png\"]}"
解决办法:用HttpResponseMessage返回json会去掉转义字符
string json = JsonConvert.SerializeObject(result);
return new HttpResponseMessage { Content = new StringContent(json, Encoding.GetEncoding("UTF-8"), "application/json") };
返回结果:
{"Result":true,"Code":"","Msg":"success","Data":["/_temp/Other/png/20190425/20190425181452_6968.png"]}
上一篇:36.C#--方法的递归
下一篇:4.1Java对象和类的概念
文章标题:C# 去掉webapi返回json所带的转义字符
文章链接:http://soscw.com/index.php/essay/91376.html