我在使用 JSON 第 1 部分示例 xcode 时遇到此错误

发布于 2024-11-04 17:41:22 字数 194 浏览 0 评论 0原文

我收到以下错误:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

彩虹直至黑白 2024-11-11 17:41:22

当第一个非空白字符与 SBJSON 不同时,SBJSON 将返回此错误

{ [ " f(alse) t(rue) n(ull) - 0 1 2 3 4 5 6 7 8 9

,这意味着您尝试解析的 JSON 数据无效。1 正如 @Nirmal 建议的那样,使用 http://jsonlint.com 验证您的 JSON 数据。有关有效 JSON 的描述,请参阅 http://json.orgRFC 4627

1该错误还意味着第一个非空白字符与 + 不同,后者不是有效的 JSON。

This error is returned by SBJSON when the first non-whitespace character is different from

{ [ " f(alse) t(rue) n(ull) - 0 1 2 3 4 5 6 7 8 9

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.

三月梨花 2024-11-11 17:41:22

尝试在此处验证您的 JSON 对象,我猜 JSON 输出存在一些问题。

Try to validate your JSON object here, I guess there is some issue with the JSON output..

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文