Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在构建一项服务来通过 APNS 向 iOS 设备推送通知。一切都很好,除了如果消息文本包含 £(英镑)或 €(欧元)字符,则通知不是由 APNS 发送的。我不认为这是 JSON 问题,因为它们通常不需要转义(无论如何我都尝试过转义但无济于事)。为了支持整个字符集,我需要做些什么吗?
您是否尝试过 Unicode 的 JSON ASCII 转义?发送\u00A3£和\u20AC€。
\u00A3
\u20AC
JSON 字符编码 - 浏览器是否很好地支持 UTF-8 或者我应该使用数字转义序列?