我在使用 JSON 第 1 部分示例 xcode 时遇到此错误
我收到以下错误:
Error Domain=org.brautaset.JSON.ErrorDomain Code=3 \"无法识别的前导字符\" UserInfo=0x6a2b1a0 {NSLocalizedDescription=无法识别的前导字符}
请告诉我这个错误是什么意思?
I am getting the following error:
Error Domain=org.brautaset.JSON.ErrorDomain Code=3 \"Unrecognised leading character\" UserInfo=0x6a2b1a0 {NSLocalizedDescription=Unrecognised leading character}
Please tell me what this error means?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当第一个非空白字符与 SBJSON 不同时,SBJSON 将返回此错误
,这意味着您尝试解析的 JSON 数据无效。1 正如 @Nirmal 建议的那样,使用 http://jsonlint.com 验证您的 JSON 数据。有关有效 JSON 的描述,请参阅 http://json.org 和 RFC 4627。
1该错误还意味着第一个非空白字符与
+
不同,后者不是有效的 JSON。This error is returned by SBJSON when the first non-whitespace character is different from
and it means that the JSON data you’re trying to parse is not valid.1 As @Nirmal suggested, use http://jsonlint.com to validate your JSON data. For a description of what valid JSON should look like, see http://json.org and RFC 4627.
1The error also means that the first non-whitespace character is different from
+
, which is not valid JSON.尝试在此处验证您的 JSON 对象,我猜 JSON 输出存在一些问题。
Try to validate your JSON object here, I guess there is some issue with the JSON output..