- Published on
Query in SwiftData
- Authors
- Name
最近在使用@Query 查询 SwiftData 的数据时,遇到了一个崩溃问题。
相关代码如下:
@Query var userSettings: [userSettings]
我们通过 Xcode 的 Expand Marcos 功能展开 @Query Marco。得到如下的代码:
var userSettings: [UserSetting]
{
get {
_userSettings.wrappedValue
}
}
private(set) var _userSettings: SwiftData.Query<[UserSetting].Element, [UserSetting]> = .init()
这里我们先回去查一下 Swift Language中的 get 和 set 方法的使用吧
Query在官方文档中的定义,这里我们找到两个相关的定义:
Struct Query
A type that fetches models using the specified criteria, and manages those models so they remain in sync with the underlying data.
@MainActor @preconcurrency
struct Query<Element, Result> where Element: PersistenModel
Macro Query
Macro Query()
Fetches all instances of the attached model type.
@attached(accessor) @attached(peer, names: prefixed('_'))
macro Query()
明显,我们上面使用的是 Macro Query,但是肯定也用了 Struct Query 这个结构体吧。