后台封装的easyui框架,处理texbox的时候报错:未结束的字符串常量。_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > 后台封装的easyui框架,处理texbox的时候报错:未结束的字符串常量。

后台封装的easyui框架,处理texbox的时候报错:未结束的字符串常量。

 2017/2/24 5:31:51  haishu  程序员俱乐部  我要评论(0)
  • 摘要:原因:特殊字符导致json字符串转换成json对象出错解决:找到初始值的地方进行过滤代码如下:theString=theString.Replace(">","&gt;");theString=theString.Replace("<","&lt;");theString=theString.Replace("","&nbsp;");theString=theString.Replace("\"","&quot;")
  • 标签:字符串 YUI

原因:特殊字符导致json字符串转换成json对象出错

解决:找到初始值的地方进行过滤

代码如下:

class="alt">           theString = theString.Replace(">", "&gt;");  

           theString = theString.Replace("<", "&lt;");  

           theString = theString.Replace(" ", "&nbsp;");  

           theString = theString.Replace("\"", "&quot;");  

           theString = theString.Replace("\'", "&#39;");  

           theString = theString.Replace("\\", "\\\\");//对斜线的转义  

           theString = theString.Replace("\n", "\\n");  

           theString = theString.Replace("\r", "\\r");  

 

发表评论
用户名: 匿名