描述:比如 对象为var data=new {url="http://www.baidu.com?a=b&c=d"}
使用JavaScriptConvert序列化为JSON之后,变成{url:"http://www.baidu.com?a=b\u0026c=d"}
&符号被转码为\u0026 怎么把它转回来呢?
1.使用正则表达式的 System.Text.RegularExpressions.Regex.Unescape(json)
2.使用第三方序列化工具 Json.net (Newtonsoft.Json)
时间: 2024-11-10 07:52:30