Javascript JSON parse unescape quotes?

a 夏天 提交于 2019-12-02 07:36:11

问题


I have a user entered JSON data which is then saved to other object. But instead of JSON I get dtExport: '{\\"type\\":\\"polyline\\"}.

How can I fix it? Thanks.


回答1:


var x = '{\"type\":\"polyline\"}'; x = x.replace(/\"/g, "\"");

and next JSON.parse

results:

"{"type":"polyline"}"


来源:https://stackoverflow.com/questions/31640767/javascript-json-parse-unescape-quotes

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!