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

问题描述

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

import Foundation

struct User: Codable {
    let username: String
    let profileURL: String
}

let user = User(username: "John", profileURL: "http://google.com")

let json = try? JSONEncoder().encode(user)

if let data = json, let str = String(data: data, encoding: .utf8)?.replacingOccurrences(of: "\\/", with: "/") {
    print(str)
    dump(str)
}

解决方法

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

import Foundation

struct User: Codable {
    let username: String
    let profileURL: String
}

let user = User(username: "John",profileURL: "http://google.com")

let json = try? JSONEncoder().encode(user)

if let data = json,let str = String(data: data,encoding: .utf8) {
    print(str)
}

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

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

(请注意转义的“ /”字符)。

在Linux机器上,我得到:

{"username":"John","profileURL":"http://google.com"}

如何使JSONEncoder返回未转义的?

我需要严格将JSON中的字符串转义。

相关问答

依赖报错 idea导入项目后依赖报错,解决方案:https://blog....
错误1:代码生成器依赖和mybatis依赖冲突 启动项目时报错如下...
错误1:gradle项目控制台输出为乱码 # 解决方案:https://bl...
错误还原:在查询的过程中,传入的workType为0时,该条件不起...
报错如下,gcc版本太低 ^ server.c:5346:31: 错误:‘struct...