在不删除旧数据的情况下更新 Plist 数据
Update Plist data without erasing old data
我正在尝试使用 swift 和 cocoa 制作文件下载器应用程序。我正在使用 plist 作为下载历史记录。但是读取数据有效,写入数据将删除以前的数据并替换为新数据。
这是代码
let newdownloaditem = downloadList(root: [downloadListt(downloadURL: response.url!.absoluteString, fileName: response.suggestedFilename!)])
// This is a codeable method
let encoder = PropertyListEncoder()
encoder.outputFormat = .xml
let pListFilURL = uniqueDataDir()?.appendingPathComponent("downloads.plist")
do {
let data = try encoder.encode(newdownloaditem)
try data.write(to: pListFilURL!)
// Here is the problem
} catch {
print(error)
}
// Here is the codeable
public struct downloadList: Codable {
let root: [downloadListt]
}
public struct downloadListt: Codable {
let downloadURL: String
let fileName: String
}
Here is an image of what happens
内容已被删除
谢谢!
您确实在用新数据替换以前的数据。
- 您需要检索之前的数据。
- 将您的新数据附加到其中。
- 保存该组合
let newItem = downloadListt(downloadURL: response.url!.absoluteString,
fileName: response.suggestedFilename!)
var allItems: [downloadListt] = []
allItems.append(contentsOf: previousList.root)
allitems.append(newItem)
let newList = downloadList(root: allItems)
...
let data = try encoder.encode(newList)
try data.write(to: pListFilURL!)
不相关但推荐(这是惯例):
您应该开始用大写字母命名 struct/classes:downloadList
=> DownloadList
我会避免命名为 downloadListt
,这是不可更改的,乍一看很难区分 downloadListt
和 downloadList
。相反,可以将其命名为 DownloadItem
。更具可读性。
我正在尝试使用 swift 和 cocoa 制作文件下载器应用程序。我正在使用 plist 作为下载历史记录。但是读取数据有效,写入数据将删除以前的数据并替换为新数据。
这是代码
let newdownloaditem = downloadList(root: [downloadListt(downloadURL: response.url!.absoluteString, fileName: response.suggestedFilename!)])
// This is a codeable method
let encoder = PropertyListEncoder()
encoder.outputFormat = .xml
let pListFilURL = uniqueDataDir()?.appendingPathComponent("downloads.plist")
do {
let data = try encoder.encode(newdownloaditem)
try data.write(to: pListFilURL!)
// Here is the problem
} catch {
print(error)
}
// Here is the codeable
public struct downloadList: Codable {
let root: [downloadListt]
}
public struct downloadListt: Codable {
let downloadURL: String
let fileName: String
}
Here is an image of what happens
内容已被删除
谢谢!
您确实在用新数据替换以前的数据。
- 您需要检索之前的数据。
- 将您的新数据附加到其中。
- 保存该组合
let newItem = downloadListt(downloadURL: response.url!.absoluteString,
fileName: response.suggestedFilename!)
var allItems: [downloadListt] = []
allItems.append(contentsOf: previousList.root)
allitems.append(newItem)
let newList = downloadList(root: allItems)
...
let data = try encoder.encode(newList)
try data.write(to: pListFilURL!)
不相关但推荐(这是惯例):
您应该开始用大写字母命名 struct/classes:downloadList
=> DownloadList
我会避免命名为 downloadListt
,这是不可更改的,乍一看很难区分 downloadListt
和 downloadList
。相反,可以将其命名为 DownloadItem
。更具可读性。