Json是我们在开发中经常使用的开发工具,它能够转换数据,并且转换的数据方便大家阅读以及理解,不过有时候json中会有特殊符号,比如换行符,那换行符影响JSON转对象吗?下面来我们就来给大家讲解一下。
换行符会影响JSON转对象,所以我们在转换的时候要注意一些特殊字符。
JSON换行符怎么处理?
去掉显然不合适。有些字段本来就有换行符,如何能去掉?测试一下json类的处理,也没有发现。想不到最终的处理确实如此简单:
后台代码把换行符\r\n替换为\\r\\n,前台代码js收到的字符就是\r\n
public static string ConvertFromListTojson(IListlist, int total, string columnInfos) where T: class { string[] cols = columnInfos.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries); StringBuilder sb = new StringBuilder(300); sb.Append("{\"total\":"); sb.Append(total); sb.Append(",\"rows\":"); sb.Append("["); foreach(T t in list) { sb.Append("{"); foreach(string col in cols) { string name = "\"{0}\":\"{1}\","; string value = getValue(t, col); value = value.Replace("\r\n", "\\r\\n"); sb.Append(string.Format(name, col, value)); } if (cols.Length > 0) { int length = sb.Length; sb.Remove(length - 1, 1); } sb.Append("},"); } if (list.Count > 0) { int length2 = sb.Length; sb.Remove(length2 - 1, 1); } sb.Append("]"); sb.Append("}"); return sb.ToString(); } private static string getValue(T t, string pname) where T: class { Type type = t.GetType(); PropertyInfo pinfo = type.GetProperty(pname); if (pinfo != null) { object v = pinfo.GetValue(t, null); return v != null ? v.ToString() : ""; } else { throw new Exception("不存在属性" + pname); } }
这样我们就完成了json换行的操作了,其实对于json换行无法就是一个字符的事情,我们只要正确掌握这个字符就可以了!最后大家如果想要了解更多json工具教程知识,敬请关注奇Q工具网。
推荐阅读: