I have to form a JSON string in which a value is having new line character. This has to be escaped and then posted using ajax call. Can any one suggest a way to escape the string with javascript. I am not using jQuery.
|
|
Take your JSON and EDIT: As far as I know of, there are no well-known JS libraries for escaping all special characters in a string. But, you could chain the
But that's pretty nasty, isn't it? Enter the beauty of functions, in that they allow you to break code into pieces and keep the main flow of your script clean, and free of 8 chained Like so:
Once we have defined that function, the main body of our code is as simple as this:
|
|||||||||||||||||
|
|
As per user667073 suggested, except reordering the backslash replacement first, and fixing the quote replacement
|
||||
|
|
I'm afraid to say that answer given by Alex is rather incorrect, to put it mildly:
This function
appears to be a better approximation. |
|||||||||
|
|
A small update for single quotes
|
||||
|
|
|
There is also second parameter on JSON.stringify. So, more elegant solution would be:
|
|||
|
|
|
I got same situation in one of my Ajax calls, where |
||||
|
|


