我正在使用 PINCache 向我的应用程序添加缓存,并且我处于缓存系统调用编码/解码委托方法的情况。这些方法是泛型的,但泛型值不明确符合Codable
。因为他们是委托,所以我无法更改签名以使泛型类型符合Codable
。
func modelForKey<T : SimpleModel>(_ cacheKey: String?, context: Any?, completion: @escaping (T?, NSError?) -> ()) {
guard let cacheKey = cacheKey, let data = cache.object(forKey: cacheKey) as? Data, T.self is Codable else {
completion(nil, nil)
return
}
let decoder = JSONDecoder()
do {
let model: T = try decoder.decode(T.self, from: data)
completion(model, nil)
} catch {
completion(nil, nil)
}
}
使用此代码,我遇到以下错误:
在参数类型
T.Type
中,T
不符合预期的类型Decodable
如何强制decoder
接受泛型值?
由于 Codable 不能在扩展中实现(还?),并且由于 SimpleModel 是 PINCache 的内部版本,因此您无法使其符合 Codable。
如果可能的话,我建议切换到具有支持可编码(如缓存)的协议的缓存库
尝试func modelForKey<T : SimpleModel, Decodable> ...
要求该类型被限制为可解码。
更改此行以检查它是否符合Decodable
:
guard let cacheKey = ... as? Data, T.self is Decodable else {
IMO 的问题不在于 PINCache。
T.self is Codable
不会告诉编译器更多关于类型T
的信息,所以decoder.decode(T.self, from: data)
不会通过类型检查,即使T
是Decodable
。
我认为分叉 RocketData 将是最简单的解决方案(如果您想继续使用 RocketData + Decodable
并且您的所有模型都符合 Decodable
)。使SimpleModel
符合Decodable
。
-
尝试创建
CustomProtocol: Codable, SimpleModel
-
如果第 1 点不起作用,请尝试创建自定义类
CustomClass: SimpleModel, Codable
并使用modelForKey<T : CustomClass>