如何链接结构?需要优化性能
Posted
技术标签:
【中文标题】如何链接结构?需要优化性能【英文标题】:How do I link structs? Need to optimise performance 【发布时间】:2021-01-17 10:34:44 【问题描述】:我正在尝试优化我的代码以最小化不必要信息的下载大小。
我的目标是链接 testData 数组中的项目以调用另一个结构中的方法。
这是一个例子:
struct Recipe: Identifiable, Hashable, Codable
@DocumentID var id: String? = UUID().uuidString
var title: String
var description: String
var imageName: String
let testData = [
Recipe(title: "Recipe1", description: "Description1", imageName: "Image1"
Recipe(title: "Recipe2", description: "Description2", imageName: "Image2"
Recipe(title: "Recipe3", description: "Description3", imageName: "Image3"
]
// Then another struct, which needs to be linked to members of the array above
// Code below is incorrect, will not work
struct CommentSection
var recipe: Recipe // would I link a variable to struct here or how else to proceed?
var user: String
var body: String
let commentData [
CommentSection(user: "User1", body: "body1"
CommentSection(user: "User1", body: "body1"
]
我想做的是能够将 CommentSection 中的项目与 testData 数组中的项目相关联,而无需创建子结构。
我知道类可以继承,尽管有很多应用程序绑定在 struct IE 数据库、数组等中,因此希望将其保留为 struct。
我将如何继续调用 CommentSection.user & body 应该链接到 testData 的 [#] 而不通过 Recipe 结构访问它?
【问题讨论】:
【参考方案1】:我不确定你想做什么。 但是,首先: 评论应该链接到被评论的对象 - 它应该是这样的:
struct CommentedObject
...
struct Comment
...
let ownerId, commentedObjectId: String
...
在哪里: ownerId - 评论员 ID, commentedObjectId - 被评论对象的 ID,
第二:
@DocumentID var id: String? = UUID().uuidString
应该看起来像这样 - @DocumentID 变量 id:字符串? – Firebase 会在对象初始化时自动创建一个 ID, 不要忘记 CodingKeys 枚举。
【讨论】:
以上是关于如何链接结构?需要优化性能的主要内容,如果未能解决你的问题,请参考以下文章