JSON数据解析错误处理办法!
-JSONValue failed. Error is: Unescaped control character [0x0D]
这个错误就是JSON解析的时候String 的时候出现转义字符。
对应用NSString 里的stringByReplacingOccurrencesOfString:@"\r"withString:@"" 取消掉转义字符就OK那!
NSString *json_string1=[json_string stringByReplacingOccurrencesOfString:@"\r"withString:@""];
\n | newline (0x0a) |
\s | space (0x20) |
\r | carriage return (0x0d) |
\t | tab (0x09) |
\v | vertical tab (0x0b) |
\f | formfeed (0x0c) |
\b | backspace (0x08) |
\a | bell/alert (0x07) |
\e | escape (0x1b) |