JSON array is unable to transmit a String having backslash
i am tranmitting a message via JSONArray but ge开发者_如何学Gotting reponse code 500. reason is that My Message String contains a character '\'.
String s="apples $54\KG"
Backslash is an escape character. Use \\
instead. There is a JSON.stringify
function too that might help.
back slash charahter is not supproted by GSM.
精彩评论