我正在尝试在我的 Flutter 应用程序中填充一个 Hive 框。我用一些任务对象填充它,然后每个任务都有一个 HiveList 的线索对象
Box<Quest> quests = await initQuests();
List<Clue> clues = await initClues();
for (var i = 0; i < quests.length; i++) {
Quest cQuest = quests.getAt(i);
Iterable<Clue> questClues = clues.where((cClue) => cClue.associatedQuest == cQuest.id);
Box<Clue> questCluesBox = await Hive.openBox<Clue>('quest_${cQuest.id}_clues');
questCluesBox.addAll(questClues);
quests.getAt(i).clues = HiveList(questCluesBox);
cQuest.save();
}
当我运行代码时,出现以下错误:
[ERROR:flutter/lib/ui/ui_dart_state.cc(177)] Unhandled Exception: RangeError (index): Index out of range: no indices are valid: 0
我正在分配一个变量,而不是尝试访问数组中的元素,所以我不知道错误的含义。
有任何想法吗?