标签: javascript json escaping
我有一个用户输入的JSON数据,然后保存到其他对象。但是我得到dtExport: '{\\"type\\":\\"polyline\\"}而不是JSON。
dtExport: '{\\"type\\":\\"polyline\\"}
我该如何解决? 感谢。
答案 0 :(得分:4)
var x =' {\"输入\":\"折线\"}' x = x.replace(/ \" / g," \"");
和下一个JSON.parse
结果:
"{"type":"polyline"}"