json反斜线怎么去除
JAVA页面JSONArrayjsonArray=newJSONArray(sInfos);Stringstr="{\"coString\":"+coString+"}"...
JAVA页面 JSONArray jsonArray = new JSONArray(sInfos);
String str="{\"coString\":" + coString + "}";
两个合并
JSONObject jObject=new JSONObject();
jObject.put("array", jsonArray.toString());
jObject.put("num", str);
JSP页面
var pros = xmlhttpRequest.responseText;
pros的值为 {"num":"{\"coString\":3}","array":"[{\"shopNo\":\"00000043\",\"user\":{\"userName\":\"kitty\"}}]"}
如何去掉反斜线?还有没有其他办法合并?JS取值目前只能取pros。var ps = JSON.parse(pros);
里面的值没法取ps.num.coString是无效的,取不了3这个值。我现在要怎么才能取到这里面的值? 展开
String str="{\"coString\":" + coString + "}";
两个合并
JSONObject jObject=new JSONObject();
jObject.put("array", jsonArray.toString());
jObject.put("num", str);
JSP页面
var pros = xmlhttpRequest.responseText;
pros的值为 {"num":"{\"coString\":3}","array":"[{\"shopNo\":\"00000043\",\"user\":{\"userName\":\"kitty\"}}]"}
如何去掉反斜线?还有没有其他办法合并?JS取值目前只能取pros。var ps = JSON.parse(pros);
里面的值没法取ps.num.coString是无效的,取不了3这个值。我现在要怎么才能取到这里面的值? 展开
推荐于2016-06-16
展开全部
<!DOCTYPE HTML>
<html>
<head>
<meta charset=UTF-8>
<meta name="keywords" content="白菜编辑部">
<title>白菜编辑部</title>
<style type="text/css">
</style>
<script type="text/javascript">
var pros = '{ "num" : "{\"coString\":3}","array" : "[{\"shopNo\":\"00000043\",\"user\":{\"userName\":\"kitty\"}}]" }';
pros = pros.replace (new RegExp ("\"\\[", "g"), "\'[")
.replace (new RegExp ("\\]\"", "g"), "]\'")
.replace (new RegExp ("\"\\{", ""), "\'{")
.replace (new RegExp ("\\}\"", ""), "}\'");
var jsonobj = eval ('(' + pros + ')');
console.log (jsonobj);
</script>
</head>
<body>
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询