使用Codable序列化为JSON时,Swift String转义

编程入门 行业动态 更新时间:2024-10-06 12:33:30
本文介绍了使用Codable序列化为JSON时,Swift String转义的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我正在尝试序列化我的对象,如下所示:

I'm trying to serialize my object as following:

import Foundation struct User: Codable { let username: String let profileURL: String } let user = User(username: "John", profileURL: "google") let json = try? JSONEncoder().encode(user) if let data = json, let str = String(data: data, encoding: .utf8) { print(str) }

但是在macOS上,我得到以下信息:

However on macOS I'm getting the following:

{"profileURL":"http:\/\/google","username":"John"}

(请注意转义的'/'字符).

(note escaped '/' character).

在Linux机器上,我得到了:

While on Linux machines I'm getting:

{"username":"John","profileURL":"google"}

如何使JSONEncoder返回未转义的内容?

How can I make JSONEncoder return the unescaped?

我需要对JSON中的字符串进行严格的转义.

I need the string in JSON to be strictly unescaped.

推荐答案

我最终使用了replacingOccurrences(of:with:),这可能不是最好的解决方案,但它解决了这个问题:

I ended up using replacingOccurrences(of:with:), which may not be the best solution, but it resolves the issue:

import Foundation struct User: Codable { let username: String let profileURL: String } let user = User(username: "John", profileURL: "google") let json = try? JSONEncoder().encode(user) if let data = json, let str = String(data: data, encoding: .utf8)?.replacingOccurrences(of: "\\/", with: "/") { print(str) dump(str) }

更多推荐

使用Codable序列化为JSON时,Swift String转义

本文发布于:2023-11-26 23:29:52,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1635649.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:序列   Codable   JSON   String   Swift

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!