“JS Json Escape” Ответ

Escape Json в JavaScript

var myJSONString = JSON.stringify(myJSON);
var myEscapedJSONString = myJSONString.replace(/\\n/g, "\\n")
                                      .replace(/\\'/g, "\\'")
                                      .replace(/\\"/g, '\\"')
                                      .replace(/\\&/g, "\\&")
                                      .replace(/\\r/g, "\\r")
                                      .replace(/\\t/g, "\\t")
                                      .replace(/\\b/g, "\\b")
                                      .replace(/\\f/g, "\\f");
// myEscapedJSONString is now ready to be POST'ed to the server. 
Yawning Yak

JS Json Escape

JSON.parse(JSON.stringify(jsonObject));
GutoTrosla

Ответы похожие на “JS Json Escape”

Вопросы похожие на “JS Json Escape”

Больше похожих ответов на “JS Json Escape” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования