Javascript JSON解析unescape引用?

时间:2015-07-26 19:00:07

标签: javascript json escaping

我有一个用户输入的JSON数据,然后保存到其他对象。但是我得到dtExport: '{\\"type\\":\\"polyline\\"}而不是JSON。

我该如何解决? 感谢。

1 个答案:

答案 0 :(得分:4)

var x =' {\"输入\":\"折线\"}'     x = x.replace(/ \" / g," \"");

和下一个JSON.parse

结果:

"{"type":"polyline"}"