I use MVC4 web-api, c#, and want to return Json using Json.net.
The problem is it comes with "backward slashes".
I also added this code to Global.asax.
GlobalConfiguration.Configuration.Formatters.XmlFormatter.SupportedMediaTypes.Clear();
Here is what it returns:
"{"cid":1,"model":"WT50JB","detail":"sdf??","unit":2,"time_in":"2012-12-11T19:00:00","time_out":"2012-12-12T13:00:06.2774691+07:00","time_used_dd":0.0,"time_used_hh":0.0}"
So what I want to see is this:
{"cid":1,"model":"WT50JB","detail":"sdf??","unit":2,"time_in":"2012-12-11T19:00:00","time_out":"2012-12-12T13:08:50.5444555+07:00","time_used_dd":0.0,"time_used_hh":0.0}
Here is JsonConvertor
string json = JsonConvert.SerializeObject(myObj);
question from:
https://stackoverflow.com/questions/13833900/return-json-but-it-includes-backward-slashes-which-i-dont-want 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…