【发布时间】:2021-03-04 17:29:21
【问题描述】:
我目前正在我的 FlutterApp 中实现 Hive。不幸的是,这个错误一直弹出:
HiveError: 已经有 typeId 100 的 TypeAdapter。
这是我的对象:
@HiveType(typeId: 100)
class ShopList{
@HiveField(0)
String name;
@HiveField(1)
List<ListProduct> products = List();
ShopList({this.name, this.products});
这是自动生成的适配器:
class ShopListAdapter extends TypeAdapter<ShopList> {
@override
final int typeId = 100;
@override
ShopList read(BinaryReader reader) {
final numOfFields = reader.readByte();
final fields = <int, dynamic>{
for (int i = 0; i < numOfFields; i++) reader.readByte(): reader.read(),
};
return ShopList(
name: fields[0] as String,
products: (fields[1] as List)?.cast<ListProduct>(),
);
}
@override
void write(BinaryWriter writer, ShopList obj) {
writer
..writeByte(2)
..writeByte(0)
..write(obj.name)
..writeByte(1)
..write(obj.products);
}
@override
int get hashCode => typeId.hashCode;
@override
bool operator ==(Object other) =>
identical(this, other) ||
other is ShopListAdapter &&
runtimeType == other.runtimeType &&
typeId == other.typeId;
}
我还有一些其他对象的 typeIds 101 和 102,它们会引发相同的错误。
Hive.registerAdapter(ShopListAdapter)); 在 try-catch-block 中运行。因此,如果适配器已经加载,代码可以继续运行,但是使用来自Hive 的值的FutureBuilder-Widget 加载无限长。
你有什么建议吗?
【问题讨论】:
-
我遇到了同样的问题,因为这是我第一次使用hive,等待有人给出答案,谢谢
-
同样的问题!
标签: flutter dart flutter-hive