返回json时要注意的一些东西:
1、后台千万不要用StringBuilder的AppendLine()方法, 这样会夹杂进去"\r\n", 而不能成功;
2、json是脆弱的, 如果要构建html作为其中的一个值, 而html中又有单双引号, 那么在后台最好是这样:
sb.Replace("\"","%db%");
sb.Replace("'", "%single%");
strAjaxHtml = string.Format("{{\"count\":\"{0}\",\"html\":\"{1}\"}}", DT.Rows.Count.ToString(), sb.ToString());
前台:
String.prototype.replaceAll = function (s1, s2) {
return this.replace(new RegExp(s1, "gm"), s2);
}
$.post("reg.aspx", search, function (data) {
$("#spanCount").html(data);
var obj = eval('(' + data + ')');
obj.html = obj.html.replaceAll("%single%", "'").replaceAll("%db%", "\"");
$("#spanCount").html(obj.count);
$("#tbodyList").html(obj.html);
});
反正最好是要两次替换;
==============================================
而html则不一样了, 非常的宽容与简单。不需要管单引号与双引号。
后台, 创建html直接sb.Append("");
strAjaxHtml =string.Format("{0}|~|{1}",DT.Rows.Count.ToString(),sb.ToString());
前台:
$.post("reg.aspx", search, function (data) {
var arr = data.split("|~|");
$("#spanCount").html(arr[0]);
$("#tbodyList").html(arr[1]);
});
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
总结:
一般情况下最好是用html;
如果一定要用json, 那最好不要在后台直接构建html, 构建的事情要放在前台才能减少出错的可能。