var jsonString = '{"htmluserresponse":"This is my firs \n test"}';
var jsonObj = JSON.parse(jsonString);
console.log("Test Response------" + jsonObj.htmluserresponse);

JSON.stringify()
实际上创建了传递给jsonString的字符串,但如果字符串有JSON.parse
个字符,则\n
会失败。
如何获取有效字符串?
答案 0 :(得分:2)
你应该逃避反斜杠:\\n
。
var jsonString = '{"htmluserresponse":"This is my firs \\n test"}';
var jsonObj = JSON.parse(jsonString);
console.log("Test Response------" + jsonObj.htmluserresponse);