gpt4 book ai didi

ios - 如何替换捆绑文件的内容

转载 作者:行者123 更新时间:2023-11-28 11:58:58 24 4
gpt4 key购买 nike

<分区>

我想用来自 API 调用的数据替换 JSON 文件的内容。我尝试了以下方法:

let filePath: String = Bundle.main.path(forResource: "shared", ofType: "json")!
let fileUrl: URL = URL(fileURLWithPath: filePath)

do {
try jsonData.write(to: fileUrl, atomically: false, encoding: .utf8)

do {
let newData = try String(contentsOf: fileUrl, encoding: .utf8)
print("New Data: \(newData)")
} catch {
print("Failed to read updated file data")
}
} catch {
print("Failed to write data to file")
}

我已确认“shared.json”列在“Copy Bundle Resources”下。我没有收到任何错误。然而“shared.json”的内容永远不会改变。我做错了什么?

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com